AutoZoomController constructor

AutoZoomController({
  1. double minZoom = 1.0,
  2. double maxZoom = 5.0,
  3. double targetAreaFraction = 0.25,
  4. double lerpFactor = 0.15,
  5. double maxZoomVelocity = 0.4,
  6. double hysteresisBand = 0.05,
  7. int settlingFrameCount = 5,
})

Implementation

AutoZoomController({
  this.minZoom = 1.0,
  this.maxZoom = 5.0,
  this.targetAreaFraction = 0.25,
  this.lerpFactor = 0.15,
  this.maxZoomVelocity = 0.4,
  this.hysteresisBand = 0.05,
  this.settlingFrameCount = 5,
});