addGeofence method

void addGeofence(
  1. Geofence geofence
)

Add geofence.

Implementation

void addGeofence(Geofence geofence) {
  _geofenceList.add(geofence);
  _printDevLog(
      'Added Geofence(${geofence.id}) (size: ${_geofenceList.length})');
}