ZoomValue constructor

ZoomValue({
  1. double minAvailableZoom = 1.0,
  2. double maxAvailableZoom = 1.0,
  3. double currentScale = 1.0,
  4. double baseScale = 1.0,
  5. int pointers = 0,
})

Implementation

ZoomValue({
  this.minAvailableZoom = 1.0,
  this.maxAvailableZoom = 1.0,
  this.currentScale = 1.0,
  this.baseScale = 1.0,
  this.pointers = 0,
});