toast static method

void toast(
  1. String msg
)

Implementation

static void toast(String msg) {
  Fluttertoast.showToast(
    msg: msg,
    toastLength: Toast.LENGTH_SHORT,
    gravity: ToastGravity.CENTER,
    timeInSecForIosWeb: 1,
    textColor: Colors.white,
    backgroundColor: Colors.black,
  );
}