renderView property

RenderView renderView

The render tree that's attached to the output surface.

Implementation

RenderView get renderView => _pipelineOwner.rootNode;
void renderView= (RenderView value)

Sets the given RenderView object (which must not be null), and its tree, to be the new render tree to display. The previous tree, if any, is detached.

Implementation

set renderView(RenderView value) {
  assert(value != null);
  _pipelineOwner.rootNode = value;
}