GestureZoom constructor
const
GestureZoom({})
Implementation
const GestureZoom({
super.key,
this.maxScale = 5.0,
this.doubleTapScale = 2.0,
required this.child,
this.onPressed,
this.duration = const Duration(milliseconds: 300),
}) : assert(maxScale >= 1.0),
assert(doubleTapScale >= 1.0 && doubleTapScale <= maxScale);