ConfirmDialogConfig constructor

const ConfirmDialogConfig({
  1. String? title,
  2. String? message,
  3. String confirmLabel = 'Yes',
  4. String cancelLabel = 'Cancel',
})

Implementation

const ConfirmDialogConfig({
  this.title,
  this.message,
  this.confirmLabel = 'Yes',
  this.cancelLabel = 'Cancel',
});