addPolyGeofenceList method

void addPolyGeofenceList(
  1. List<PolyGeofence> polyGeofenceList
)

Add polygon geofence list.

Implementation

void addPolyGeofenceList(List<PolyGeofence> polyGeofenceList) {
  for (var i = 0; i < polyGeofenceList.length; i++) {
    addPolyGeofence(polyGeofenceList[i]);
  }
}