showLong static method
长Toast
Implementation
static Future<bool?> showLong(
String msg, {
ToastGravity gravity = ToastGravity.CENTER,
Color? backgroundColor,
Color textColor = Colors.white,
double fontSize = 12.0,
}) {
return Fluttertoast.showToast(
msg: msg,
toastLength: Toast.LENGTH_LONG,
gravity: gravity,
backgroundColor: backgroundColor ?? Color.fromRGBO(0, 0, 0, 0.6),
textColor: Colors.white,
fontSize: fontSize,
);
}