addAll method

void addAll(
  1. List<RenderBox> children
)

Add multiple children to the end of the child list

Implementation

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