showErrorToast function

void showErrorToast(
  1. String msg
)

显示错误Toast

Implementation

void showErrorToast(String msg) {
  Toast.error(msg);
}