toastError static method

void toastError(
  1. int code,
  2. String desc
)

Implementation

static void toastError(int code, String desc) {
  Fluttertoast.showToast(
    msg: "code:$code,desc:$desc",
    toastLength: Toast.LENGTH_SHORT,
    gravity: ToastGravity.CENTER,
    timeInSecForIosWeb: 1,
    textColor: Colors.white,
    backgroundColor: Colors.black,
  );
}