BaseDialogWidget constructor

const BaseDialogWidget({
  1. Key? key,
  2. Color? backgroundColor,
  3. double? elevation,
  4. Duration insetAnimationDuration = const Duration(milliseconds: 100),
  5. Curve insetAnimationCurve = Curves.decelerate,
  6. ShapeBorder? shape,
  7. required Widget child,
  8. double? verticalSymmetric,
  9. double? horizontalSymmetric,
})

Implementation

const BaseDialogWidget({
  Key? key,
  this.backgroundColor,
  this.elevation,
  this.insetAnimationDuration = const Duration(milliseconds: 100),
  this.insetAnimationCurve = Curves.decelerate,
  this.shape,
  required this.child,
  this.verticalSymmetric,
  this.horizontalSymmetric,
}) : super(key: key);