showToast static method

dynamic showToast(
  1. String message
)

Implementation

static showToast(String message) async {
  Fluttertoast.showToast(
      msg: message,
      toastLength: Toast.LENGTH_SHORT,
      gravity: ToastGravity.BOTTOM,
      timeInSecForIosWeb: 1,
      backgroundColor: const Color.fromARGB(255, 110, 110, 110),
      textColor: Colors.white,
      fontSize: 14.0);
}