RenderProxyBox constructor

RenderProxyBox([RenderBox child ])

Creates a proxy render box.

Proxy render boxes are rarely created directly because they simply proxy the render box protocol to child. Instead, consider using one of the subclasses.

Implementation

RenderProxyBox([RenderBox child]) {
  this.child = child;
}