showToast method

void showToast(
  1. String message
)

Implementation

void showToast(String message) {
  Fluttertoast.showToast(
      msg: message,
      toastLength: Toast.LENGTH_LONG,
      gravity: ToastGravity.BOTTOM,
      timeInSecForIosWeb: 1,
      backgroundColor: Colors.white70,
      textColor: Colors.black,
      fontSize: 16.0);
}