showInDialog method
Future
showInDialog({
- required BuildContext context,
- required String title,
- bool isCancelable = true,
- 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,
);
}