PinchZoomImage constructor

PinchZoomImage({
  1. required Widget image,
  2. Color zoomedBackgroundColor = Colors.transparent,
  3. bool hideStatusBarWhileZooming = false,
  4. Function? onZoomStart,
  5. Function? onZoomEnd,
})

Implementation

PinchZoomImage({
  required this.image,
  this.zoomedBackgroundColor = Colors.transparent,
  this.hideStatusBarWhileZooming = false,
  this.onZoomStart,
  this.onZoomEnd,
});