toast.dart 136 B

1234567
  1. import 'package:fluttertoast/fluttertoast.dart';
  2. class Toast {
  3. static show(String msg) {
  4. Fluttertoast.showToast(msg: msg);
  5. }
  6. }