syncLayoutChildren method

void syncLayoutChildren()
inherited

Implementation

void syncLayoutChildren() {
  final layoutChildren = children.whereType<LayoutComponent>();
  layoutNode.clearChildren();
  for (var i = 0; i < layoutChildren.length; i++) {
    layoutNode.insertChild(layoutChildren.elementAt(i).layoutNode, i);
  }
}