successToast function

dynamic successToast(
  1. dynamic message
)

Implementation

successToast(message) {
  Fluttertoast.showToast(
      msg: message,
      toastLength: Toast.LENGTH_SHORT,
      gravity: ToastGravity.CENTER,
      timeInSecForIosWeb: 1,
      backgroundColor: baseColor_1,
      textColor: buttonText,
      fontSize: 16.0);
}