showToast static method
显示Toast提示
Implementation
static void showToast(String text) {
  if (text.trim().isNotEmpty) {
    ComToast.show(text.trim());
  }
}显示Toast提示
static void showToast(String text) {
  if (text.trim().isNotEmpty) {
    ComToast.show(text.trim());
  }
}