addAll method

void addAll(
  1. KeyType key,
  2. List<ChildType>? children
)

Add all the children to the end of this render object's child list.

Implementation

void addAll(KeyType key, List<ChildType>? children) {
  children?.forEach((e) => add(key, e));
}