showToast method
展示toast
Implementation
void showToast(String? msg) {
if (msg != null) {
// Fluttertoast.showToast(msg: msg);
AppHubUtil.showToast(msg);
}
}
展示toast
void showToast(String? msg) {
if (msg != null) {
// Fluttertoast.showToast(msg: msg);
AppHubUtil.showToast(msg);
}
}