toastError static method
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,
);
}