menu
yxr_flutter_basic package
documentation
base/vm/BaseVM.dart
BaseVM
showToast method
showToast method
dark_mode
light_mode
showToast
method
void
showToast
(
String
?
msg
)
展示toast
Implementation
void showToast(String? msg) { if (msg != null) { Fluttertoast.showToast(msg: msg); } }
yxr_flutter_basic package
documentation
base/vm/BaseVM
BaseVM
showToast method
BaseVM class