flingStarted method

void flingStarted(
  1. MapEventSource source
)

To be called when a fling gesture starts.

Implementation

void flingStarted(MapEventSource source) {
  _emitMapEvent(
    MapEventFlingAnimationStart(
      camera: camera,
      source: MapEventSource.flingAnimationController,
    ),
  );
}