removeLocationServicesStatusChangeListener method

void removeLocationServicesStatusChangeListener(
  1. ValueChanged<bool> listener
)

Remove a previously registered closure from the list of closures that are notified when the location services status changes.

Implementation

void removeLocationServicesStatusChangeListener(ValueChanged<bool> listener) {
  _locationServicesStatusChangeListeners.remove(listener);
  _printDevLog(
      'The LocationServicesStatusChange listener has been removed. (size: ${_locationServicesStatusChangeListeners.length})');
}