admin
2021-11-25 70a344485bd0c9b68ac91f72ed23ec5bfa998b09
1
2
3
4
5
6
7
import 'package:fluttertoast/fluttertoast.dart';
 
class ToastUtil {
  static toast(String text) {
    Fluttertoast.showToast(msg: text);
  }
}