BaseDialog constructor

BaseDialog({
  1. Key? key,
  2. Widget? child,
  3. Color? backgroundColor,
  4. ShapeBorder? shape,
  5. double? elevation,
  6. EdgeInsets? dialogMargin,
  7. AlignmentGeometry dialogAlignment = Alignment.center,
  8. double? dialogWidth,
  9. EdgeInsets? dialogPadding,
})

Implementation

BaseDialog({
  Key? key,
  this.child,
  this.backgroundColor,
  this.shape,
  this.elevation,
  this.dialogMargin,
  this.dialogAlignment = Alignment.center,
  this.dialogWidth,
  this.dialogPadding,
}) : super(key: key);