showToast method
Implementation
void showToast({required String msg, Color? bgColor, Color? textColor, double? fontSize}) {
Fluttertoast.showToast(
msg: msg,
toastLength: Toast.LENGTH_SHORT,
gravity: ToastGravity.BOTTOM,
backgroundColor: bgColor ?? Colors.blue,
textColor: textColor ?? Colors.white,
fontSize: fontSize ?? 16,
);
}