showLoading method
Implementation
void showLoading({
String? message,
Color? indicatorColor,
AlertTheme? theme,
}) {
OverlayService().show(
LoadingDialogWidget(
config: LoadingConfig(
message: message,
indicatorColor: indicatorColor,
theme: theme,
),
),
);
}