addOverflowLayoutFromChildren method

void addOverflowLayoutFromChildren(
  1. List<RenderBox> children
)

Implementation

void addOverflowLayoutFromChildren(List<RenderBox> children) {
  for (var child in children) {
    addOverflowLayoutFromChild(child);
  }
}