changeCircles method

void changeCircles(
  1. Set<Circle> circlesToChange
)

Updates a set of Circle objects with new options.

Implementation

void changeCircles(Set<Circle> circlesToChange) {
  circlesToChange.forEach(_changeCircle);
}