showWarningSnake function

dynamic showWarningSnake(
  1. dynamic e
)

Implementation

showWarningSnake(e) {
  Fluttertoast.showToast(
      msg: e,
      toastLength: Toast.LENGTH_SHORT,
      gravity: ToastGravity.BOTTOM,
      timeInSecForIosWeb: 1,
      backgroundColor: Colors.yellow,
      textColor: Colors.white,
      fontSize: 16.0);
}