removeGeofence method

void removeGeofence(
  1. Geofence geofence
)

Remove geofence.

Implementation

void removeGeofence(Geofence geofence) {
  _geofenceList.remove(geofence);
  _printDevLog(
      'The Geofence(${geofence.id}) has been removed. (size: ${_geofenceList.length})');
}