showToast static method
void
showToast(})
Implementation
static void showToast(String msg,
{Toast toastLength = Toast.LENGTH_SHORT,
double? fontSize,
ToastGravity gravity = ToastGravity.BOTTOM,
Color? bgColor,
Color? textColor}) {
Fluttertoast.showToast(
msg: msg,
toastLength: toastLength,
gravity: gravity,
fontSize: fontSize ?? toastFontSize,
textColor: textColor ?? toastTextColor,
backgroundColor: bgColor ?? toastBgColor,
);
}