RenderingFlutterBinding constructor

RenderingFlutterBinding({RenderBox root })

Creates a binding for the rendering layer.

The root render box is attached directly to the renderView and is given constraints that require it to fill the window.

Implementation

RenderingFlutterBinding({ RenderBox root }) {
  assert(renderView != null);
  renderView.child = root;
}