changePolygons method

void changePolygons(
  1. Set<Polygon> polygonsToChange
)

Updates a set of Polygon objects with new options.

Implementation

void changePolygons(Set<Polygon> polygonsToChange) {
  polygonsToChange.forEach(_changePolygon);
}