DialogConfirm constructor
DialogConfirm({
- required String title,
- String? message,
- String confirmLabel = 'Confirm',
- String cancelLabel = 'Cancel',
- CmdCallback? onConfirm,
- CmdCallback? onCancel,
- Key? key,
Implementation
DialogConfirm({
required this.title,
this.message,
this.confirmLabel = 'Confirm',
this.cancelLabel = 'Cancel',
this.onConfirm,
this.onCancel,
super.key,
});