toast function

void toast({
  1. required String msg,
  2. required StatusCase state,
})

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) ;
}