showInfoToast function

void showInfoToast(
  1. String msg
)

显示提示Toast

Implementation

void showInfoToast(String msg) {
  Toast.info(msg);
}