renderView property
override
The render tree that's attached to the output surface.
Implementation
@override
_LiveTestRenderView get renderView => super.renderView;
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;
}