addPolyGeofence method

void addPolyGeofence(
  1. PolyGeofence polyGeofence
)

Add polygon geofence.

Implementation

void addPolyGeofence(PolyGeofence polyGeofence) {
  _polyGeofenceList.add(polyGeofence);
  _printDevLog(
      'Added PolyGeofence(${polyGeofence.id}) (size: ${_polyGeofenceList.length})');
}