showInDialog method

Future showInDialog({
  1. required BuildContext context,
  2. required String title,
  3. bool isCancelable = true,
  4. bool hasClosebutton = false,
})

Implementation

Future showInDialog({
  required BuildContext context,
  required String title,
  bool isCancelable = true,
  bool hasClosebutton = false,
}) {
  return UIUtils.showWidgetInDialog(
    context: context,
    title: title,
    widget: this,
    isCancelable: isCancelable,
    hasClosebutton: hasClosebutton,
  );
}