RenderProxyBox constructor

RenderProxyBox([
  1. RenderBox? child
])

Creates a proxy render box.

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

Implementation

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