OverlappingDialog constructor

const OverlappingDialog({
  1. Key? key,
  2. Color? backgroundColor,
  3. double? elevation,
  4. Duration insetAnimationDuration = const Duration(milliseconds: 100),
  5. Curve insetAnimationCurve = Curves.decelerate,
  6. Clip clipBehavior = Clip.none,
  7. ShapeBorder? shape,
  8. Rect? rect,
  9. Widget? child,
})

Implementation

const OverlappingDialog({
  super.key,
  this.backgroundColor,
  this.elevation,
  this.insetAnimationDuration = const Duration(milliseconds: 100),
  this.insetAnimationCurve = Curves.decelerate,
  this.clipBehavior = Clip.none,
  this.shape,
  this.rect,
  this.child,
});