removePolygons method

void removePolygons(
  1. Set<PolygonId> polygonIdsToRemove
)

Removes a set of PolygonIds from the cache.

Implementation

void removePolygons(Set<PolygonId> polygonIdsToRemove) {
  polygonIdsToRemove.forEach(_removePolygon);
}