MapMovedCallback typedef
MapMovedCallback =
void Function(MapMovedEvent event)
How the provider widgets report a raw camera event to GenericMap, and how GenericMap reports the debounced one on to the host.
The provider builds the MapMovedEvent: it is the only layer that knows what the camera did and what caused it — flutter_map reports a source itself, Google Maps and the Mapbox SDK have theirs reconstructed from the camera calls generic_map made (see MapMoveAttribution).
Implementation
typedef MapMovedCallback = void Function(MapMovedEvent event);