showNoticeSnackBar static method
dynamic
showNoticeSnackBar(
- dynamic message
Implementation
static showNoticeSnackBar(message) {
return Fluttertoast.showToast(
msg: message.toString(),
toastLength: Toast.LENGTH_LONG,
gravity: ToastGravity.BOTTOM,
timeInSecForIosWeb: 4,
backgroundColor: BLUE,
textColor: Colors.white,
fontSize: 13.0);
}