toast function

  1. @Doc(message: "简单toast弹窗")
void toast(
  1. String msg
)

Implementation

@Doc(message: "简单toast弹窗")
void toast(String msg) {
  SmartDialog.dismiss(status: SmartStatus.toast);
  SmartDialog.showToast(msg);
}