removeLocationIssueListener method

void removeLocationIssueListener(
  1. LocationIssueListener listener
)
override

Removes a LocationIssueListener from the engine.

Implementation

void removeLocationIssueListener(LocationIssueListener listener) {
  LocationIssueListenerBridge? bridge = _locationIssueListeners.remove(listener);
  if (bridge == null) {
    return;
  }
  _location.removeLocationIssueListener(bridge);
}