GesturesSettings constructor

GesturesSettings({
  1. bool? rotateEnabled,
  2. bool? pinchToZoomEnabled,
  3. bool? scrollEnabled,
  4. bool? simultaneousRotateAndPinchToZoomEnabled,
  5. bool? pitchEnabled,
  6. ScrollMode? scrollMode,
  7. bool? doubleTapToZoomInEnabled,
  8. bool? doubleTouchToZoomOutEnabled,
  9. bool? quickZoomEnabled,
  10. ScreenCoordinate? focalPoint,
  11. bool? pinchToZoomDecelerationEnabled,
  12. bool? rotateDecelerationEnabled,
  13. bool? scrollDecelerationEnabled,
  14. bool? increaseRotateThresholdWhenPinchingToZoom,
  15. bool? increasePinchToZoomThresholdWhenRotating,
  16. double? zoomAnimationAmount,
  17. bool? pinchPanEnabled,
})

Implementation

GesturesSettings({
  this.rotateEnabled,
  this.pinchToZoomEnabled,
  this.scrollEnabled,
  this.simultaneousRotateAndPinchToZoomEnabled,
  this.pitchEnabled,
  this.scrollMode,
  this.doubleTapToZoomInEnabled,
  this.doubleTouchToZoomOutEnabled,
  this.quickZoomEnabled,
  this.focalPoint,
  this.pinchToZoomDecelerationEnabled,
  this.rotateDecelerationEnabled,
  this.scrollDecelerationEnabled,
  this.increaseRotateThresholdWhenPinchingToZoom,
  this.increasePinchToZoomThresholdWhenRotating,
  this.zoomAnimationAmount,
  this.pinchPanEnabled,
});