toast static method
Implementation
static toast(String message,
{Color? color, Color? backgroundColor, Color? textColor}) {
Fluttertoast.showToast(
msg: message,
backgroundColor: color ?? Colors.black,
textColor: textColor ?? Colors.white,
);
}