toast static method
Implementation
static void toast(String? msg, {BuildContext? context, bool long = false}) {
if (msg == null || msg.isEmpty) return;
if(!kIsWeb)Fluttertoast.cancel();
Fluttertoast.showToast(
msg: msg,
toastLength: long ? Toast.LENGTH_LONG : Toast.LENGTH_SHORT,
gravity: ToastGravity.CENTER,
timeInSecForIosWeb: 1,
backgroundColor: Theme.of(context ?? Get.context!).primaryColor,
textColor: Theme.of(context ?? Get.context!).colorScheme.onPrimary,
webBgColor: Theme.of(context ?? Get.context!).primaryColor.rgbaString(withAlpha: false),
webPosition: "center",
fontSize: 14);
}