attach method

  1. @nonVirtual
void attach(
  1. PipelineOwner owner,
  2. StageRenderBox renderBox
)

Implementation

@nonVirtual
void attach(PipelineOwner owner, StageRenderBox renderBox) {
  if (isAttached) {
    throw UnsupportedError('Call attach multiple times');
  }
  _renderBox = renderBox;
  onAttach();
}