ConfirmationDialogOptions constructor

const ConfirmationDialogOptions({
  1. DialogType type = DialogType.warning,
  2. bool barrierDismissible = true,
  3. bool showCancel = true,
  4. Color? confirmButtonColor,
  5. Color? cancelButtonColor,
})

Extra options for the confirmation dialog.

Implementation

const ConfirmationDialogOptions({
  this.type = DialogType.warning,
  this.barrierDismissible = true,
  this.showCancel = true,
  this.confirmButtonColor,
  this.cancelButtonColor,
});