removeLocationStatusListener method
- LocationStatusListener listener
override
Removes a LocationStatusListener from the engine.
Implementation
void removeLocationStatusListener(LocationStatusListener listener) {
LocationStatusListenerBridge? bridge = _locationStatusListeners.remove(listener);
if (bridge == null) {
return;
}
_location.removeLocationStatusListener(bridge);
}