ConfirmDialogConfig constructor

const ConfirmDialogConfig({
  1. String? title,
  2. String? message,
  3. String confirmLabel = 'Yes',
  4. String cancelLabel = 'Cancel',
  5. FontWeight titleFontWeight = FontWeight.w700,
  6. FontWeight messageFontWeight = FontWeight.w400,
  7. FontWeight buttonFontWeight = FontWeight.w600,
})

Implementation

const ConfirmDialogConfig({
  this.title,
  this.message,
  this.confirmLabel = 'Yes',
  this.cancelLabel = 'Cancel',
  this.titleFontWeight = FontWeight.w700,
  this.messageFontWeight = FontWeight.w400,
  this.buttonFontWeight = FontWeight.w600,
});