removePolyGeofence method

void removePolyGeofence(
  1. PolyGeofence polyGeofence
)

Remove polygon geofence.

Implementation

void removePolyGeofence(PolyGeofence polyGeofence) {
  _polyGeofenceList.remove(polyGeofence);
  _printDevLog(
      'The PolyGeofence(${polyGeofence.id}) has been removed. (size: ${_polyGeofenceList.length})');
}