addAll method

void addAll(
  1. Iterable<Renderer> children
)

Implementation

void addAll(Iterable<Renderer> children) {
  children.forEach(add);
}