toToast function
Implementation
toToast(String text) {
if (Platform.isIOS) {
FocusManager.instance.primaryFocus?.unfocus();
}
Fluttertoast.showToast(
msg: text,
toastLength: Toast.LENGTH_SHORT,
gravity: ToastGravity.BOTTOM,
timeInSecForIosWeb: 1,
textColor: Colors.black,
backgroundColor: Colors.white,
fontSize: 16.0);
}