attach method

  1. @override
void attach(
  1. PipelineOwner owner
)
inherited

Attach this render object to the tree with the given owner.

Implementation

@override
void attach(PipelineOwner owner) {
  super.attach(owner);
  _child?.attach(owner);
}