showLoading static method
显示Loading
Implementation
static void showLoading(
{String? text, Widget Function(BuildContext)? builder}) {
hideLoading();
if (builder != null) {
ComToast.customLoading(builder: builder);
} else {
ComToast.loading(message: text?.trim());
}
}