showToastMessage method

void showToastMessage(
  1. String message
)

Implementation

void showToastMessage(String message) {
  Fluttertoast.showToast(
      msg: message,
      toastLength: Toast.LENGTH_SHORT,
      gravity: ToastGravity.BOTTOM,
      timeInSecForIosWeb: 1,
      // backgroundColor: AppColor.darkBlueColor,
      // textColor: Colors.white,
      fontSize: 16.0);
}