toast method
Implementation
void toast({
double? fontSize,
ToastGravity? gravity,
Color? backgroundColor,
Color? textColor,
}) {
if (isEmpty) {
return;
}
Fluttertoast.showToast(
msg: this,
gravity: gravity ?? ToastGravity.CENTER,
backgroundColor: backgroundColor ?? Colors.black54,
textColor: textColor ?? Colors.white,
fontSize: fontSize ?? 16.0,
);
}