attach method

void attach(
  1. PipelineOwner owner
)

Attach this render object and its existing children to owner.

Implementation

void attach(PipelineOwner owner) {
  _pipelineOwner = owner;
  for (final child in children) {
    child.attach(owner);
  }
  markNeedsLayout();
}