BaseDialog constructor

BaseDialog({
  1. bool cancelable = true,
  2. bool canceledOnTouchOutside = true,
  3. Alignment alignment = Alignment.center,
  4. VoidCallback? onDismissListener,
  5. VoidCallback? onTouchOutsideClosed,
})

Implementation

BaseDialog({
  this.cancelable = true,
  this.canceledOnTouchOutside = true,
  this.alignment = Alignment.center,
  this.onDismissListener,
  this.onTouchOutsideClosed,
});