addOverflowLayoutFromChildren method

void addOverflowLayoutFromChildren(
  1. List<RenderBox> children
)

Implementation

void addOverflowLayoutFromChildren(List<RenderBox> children) {
  children.forEach((child) {
    addOverflowLayoutFromChild(child);
  });
}