showCustom method

void showCustom({
  1. required Widget child,
  2. AlertTheme? theme,
})

Implementation

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