toast static method
Implementation
static void toast(String msg) {
Fluttertoast.showToast(
msg: msg,
toastLength: Toast.LENGTH_SHORT,
gravity: ToastGravity.CENTER,
backgroundColor: AppColors.btnColor,
timeInSecForIosWeb: 1,
textColor: Colors.white,
fontSize: 16.0,
webPosition: "center",
);
}