toast static method

dynamic toast(
  1. String msg
)

Implementation

static toast(String msg){
  Fluttertoast.showToast(
    msg: msg??'',
    toastLength: Toast.LENGTH_LONG,
    gravity: ToastGravity.CENTER,
    timeInSecForIosWeb: 1,
    backgroundColor: Colors.grey,
    textColor: Colors.white,
    fontSize:15,
  );
}