showToastMessage function
Implementation
showToastMessage(String message) {
Fluttertoast.showToast(
msg: S.current.copy + message,
backgroundColor: Colors.grey,
textColor: Colors.white,
toastLength: Toast.LENGTH_SHORT,
fontSize: 12,
timeInSecForIosWeb: 2,
webBgColor: '#808080',
webPosition: 'center');
}