MapEventWithMove constructor

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

Implementation

MapEventWithMove({
  required this.targetCenter,
  required this.targetZoom,
  required MapEventSource source,
  required LatLng center,
  required double zoom,
}) : super(source: source, center: center, zoom: zoom);