removePolyGeofenceList method

void removePolyGeofenceList(
  1. List<PolyGeofence> polyGeofenceList
)

Remove polygon geofence list.

Implementation

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