customToast function

dynamic customToast(
  1. String? msg
)

Implementation

customToast(String? msg) async {
  // Add your function code here!
  Fluttertoast.showToast(
    msg: msg ?? "",
    toastLength: Toast.LENGTH_SHORT,
    gravity: ToastGravity.BOTTOM,
    timeInSecForIosWeb: 1,
    backgroundColor: black,
    textColor: white,
    fontSize: 16.0,
  );
}