renderView property

_LiveTestRenderView renderView
override

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

Implementation

@override
_LiveTestRenderView get renderView => super.renderView;
void renderView= (RenderView value)
inherited

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;
}