ExceptionDialog constructor
const
ExceptionDialog({
- Key? key,
- required String code,
- required String message,
- required VoidCallback onConfirm,
- StringEnum? customTitle,
- StringEnum? customConfirmText,
- bool showErrorCode = true,
- bool showErrorMessageTitle = false,
Implementation
const ExceptionDialog({
super.key,
required this.code,
required this.message,
required this.onConfirm,
this.customTitle,
this.customConfirmText,
this.showErrorCode = true,
this.showErrorMessageTitle = false,
});