ConfirmationDialog constructor
const
ConfirmationDialog({
- Key? key,
- required String title,
- required String content,
- required VoidCallback onConfirm,
- VoidCallback? onCancel,
Implementation
const ConfirmationDialog({
super.key,
required this.title,
required this.content,
required this.onConfirm,
this.onCancel,
});