RenderCustomSingleChildLayoutBox({RenderBox child, SingleChildLayoutDelegate delegate })

Creates a render box that defers its layout to a delgate.

The delegate argument must not be null.

Source

RenderCustomSingleChildLayoutBox({
  RenderBox child,
  SingleChildLayoutDelegate delegate
}) : _delegate = delegate, super(child) {
  assert(delegate != null);
}