removePolyGeofenceStatusChangeListener method

void removePolyGeofenceStatusChangeListener(
  1. PolyGeofenceStatusChanged listener
)

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

Implementation

void removePolyGeofenceStatusChangeListener(
    PolyGeofenceStatusChanged listener) {
  _polyGeofenceStatusChangeListeners.remove(listener);
  _printDevLog(
      'The PolyGeofenceStatusChange listener has been removed. (size: ${_polyGeofenceStatusChangeListeners.length})');
}