ZoomDialog constructor

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

Implementation

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