flingNotStarted method

void flingNotStarted(
  1. MapEventSource source
)

To be called when a fling gesture does not start.

Implementation

void flingNotStarted(MapEventSource source) {
  _emitMapEvent(
    MapEventFlingAnimationNotStarted(
      camera: camera,
      source: source,
    ),
  );
}