errorToast static method

void errorToast(
  1. String msg
)

错误toast

Implementation

static void errorToast(String msg) {
  _showToast(
    msg,
    preIcon: Icon(Icons.cancel_rounded, color: HbColor.textError, size: 18.w),
  );
}