showAlertDialog function
dynamic
showAlertDialog(
- BuildContext context,
- String title,
- void onConfirm()?, {
- String? message,
- bool showIcon = false,
Implementation
dynamic showAlertDialog(BuildContext context, String title, void Function()? onConfirm, {String? message, bool showIcon = false}) {
return showAlertDialogCustom(title: title, message: message, onConfirm: onConfirm, context: context);
}