show static method
void
show(
- String msg,
- BuildContext context, {
- Toast? duration,
- ToastGravity? gravity,
- Color? backgroundColor,
- Color? textColor,
- double? fontSize,
Implementation
static void show(String msg, BuildContext context,
{Toast? duration,
ToastGravity? gravity,
Color? backgroundColor,
Color? textColor,
double? fontSize}) {
Fluttertoast.showToast(
msg: msg,
toastLength: duration,
gravity: gravity,
backgroundColor: backgroundColor,
textColor: textColor,
fontSize: fontSize);
}