#add f(luttertoast:<latest-version>) dependency to your pubspec
#if its giving no platform set for toast then simple just unistall
#app from phone and re-run
Future<bool?> showToastMessage(message, color)
{
return Fluttertoast.showToast(
msg: message,
toastLength: Toast.LENGTH_SHORT,
gravity: ToastGravity.CENTER,
timeInSecForIosWeb: 1,
backgroundColor: color,
textColor: Colors.white,
fontSize: 16.0
);
}