ConfirmationDialog constructor

const ConfirmationDialog({
  1. Key? key,
  2. required String title,
  3. required String content,
  4. required VoidCallback onConfirm,
  5. VoidCallback? onCancel,
})

Implementation

const ConfirmationDialog({
  super.key,
  required this.title,
  required this.content,
  required this.onConfirm,
  this.onCancel,
});