MongolDialog constructor

const MongolDialog({
  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. Widget? child,
})

Implementation

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