showToast static method
Implementation
static showToast(
String message, {
ToastGravity gravity = ToastGravity.CENTER,
}) {
Fluttertoast.showToast(
msg: message,
toastLength: Toast.LENGTH_LONG,
gravity: gravity,
timeInSecForIosWeb: 1,
backgroundColor: Colors.black,
textColor: Colors.white,
fontSize: 16.0,
);
}