attach method

void attach(
  1. LayoutPipelineOwner owner
)

Implementation

void attach(LayoutPipelineOwner owner) {
  detach();
  assert(_owner == null);
  _owner = owner;
  for (final child in _children) {
    child.attach(owner);
  }
}