toast function
Implementation
void toast ({
required String msg ,
required StatusCase state ,
}) {
Fluttertoast.showToast(
msg: msg,
toastLength: Toast.LENGTH_LONG,
gravity: ToastGravity.BOTTOM,
timeInSecForIosWeb: 5,
backgroundColor: changeColor(state),
textColor: Colors.white,
fontSize: 16.0) ;
}