MapEventFlingAnimation constructor

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

Implementation

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