MapEventWithMove constructor

const MapEventWithMove({
  1. required LatLng targetCenter,
  2. required double targetZoom,
  3. required MapEventSource source,
  4. required LatLng center,
  5. required double zoom,
})

Implementation

const MapEventWithMove({
  required this.targetCenter,
  required this.targetZoom,
  required super.source,
  required super.center,
  required super.zoom,
});