showToast function

void showToast(
  1. String msg
)

显示Toast

Implementation

void showToast(String msg) {
  Toast.show(msg);
}