show static method
void
show(})
Implementation
static void show(
String message, {
ToastGravity gravity = ToastGravity.BOTTOM,
Color background = const Color(0xFF323232),
Color textColor = Colors.white,
double fontSize = 14,
}) {
Fluttertoast.showToast(
msg: message,
gravity: gravity,
backgroundColor: background,
textColor: textColor,
fontSize: fontSize,
toastLength: Toast.LENGTH_SHORT,
);
}