RenderView constructor

RenderView({RenderBox child, @required ViewConfiguration configuration })

Creates the root of the render tree.

Typically created by the binding (e.g., RendererBinding).

The configuration must not be null.

Implementation

RenderView({
  RenderBox child,
  @required ViewConfiguration configuration,
}) : assert(configuration != null),
     _configuration = configuration {
  this.child = child;
}