customToast function

void customToast(
  1. String message
)

Implementation

void customToast(String message) {
  Fluttertoast.showToast(
      msg: message,
      toastLength: Toast.LENGTH_SHORT,
      gravity: ToastGravity.BOTTOM,
      backgroundColor: Colors.black54,
      textColor: Colors.white,
      timeInSecForIosWeb: 2);
}