addAll method

void addAll(
  1. List<RenderBox> children
)

Adds every child in document order.

Implementation

void addAll(List<RenderBox> children) {
  for (final child in children) {
    add(child);
  }
}