ZoomDialog constructor

const ZoomDialog({
  1. Key? key,
  2. Color? backgroundColor,
  3. required Widget child,
  4. double initZoomScale = 0,
  5. double zoomScale = 3,
  6. double? blur,
  7. void onDismiss()?,
})

Implementation

const ZoomDialog({
  super.key,
  this.backgroundColor,
  required this.child,
  this.initZoomScale = 0,
  this.zoomScale = 3,
  super.blur,
  super.onDismiss,
});