CLConfirmationDialog constructor

const CLConfirmationDialog({
  1. Key? key,
  2. required String title,
  3. required String message,
  4. String confirmLabel = 'Conferma',
  5. String cancelLabel = 'Annulla',
  6. bool isDestructive = false,
  7. IconData? icon,
})

Implementation

const CLConfirmationDialog({
  super.key,
  required this.title,
  required this.message,
  this.confirmLabel = 'Conferma',
  this.cancelLabel = 'Annulla',
  this.isDestructive = false,
  this.icon,
});