MapZoomDetails constructor

MapZoomDetails({
  1. Offset? localFocalPoint,
  2. Offset? globalFocalPoint,
  3. double? previousZoomLevel,
  4. double? newZoomLevel,
  5. MapLatLng? focalLatLng,
  6. MapLatLngBounds? previousVisibleBounds,
  7. MapLatLngBounds? newVisibleBounds,
})

Creates a MapZoomDetails.

Implementation

MapZoomDetails({
  this.localFocalPoint,
  this.globalFocalPoint,
  this.previousZoomLevel,
  this.newZoomLevel,
  this.focalLatLng,
  this.previousVisibleBounds,
  this.newVisibleBounds,
});