showCustom method
Implementation
void showCustom({
required Widget child,
AlertTheme? theme,
}) {
OverlayService().show(
CustomDialogWidget(
config: CustomConfig(
child: child,
theme: theme,
),
),
);
}
void showCustom({
required Widget child,
AlertTheme? theme,
}) {
OverlayService().show(
CustomDialogWidget(
config: CustomConfig(
child: child,
theme: theme,
),
),
);
}