MapEventMove constructor

const MapEventMove({
  1. String? id,
  2. required LatLng targetCenter,
  3. required double targetZoom,
  4. required MapEventSource source,
  5. required LatLng center,
  6. required double zoom,
})

Implementation

const MapEventMove({
  this.id,
  required LatLng targetCenter,
  required double targetZoom,
  required super.source,
  required super.center,
  required super.zoom,
}) : super(
        targetCenter: targetCenter,
        targetZoom: targetZoom,
      );