attach method
void
attach(
- 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();
}