RenderCustomMultiChildLayoutBox({List<RenderBox> children, MultiChildLayoutDelegate delegate })

Creates a render object that customizes the layout of multiple children.

The delegate argument must not be null.

Source

RenderCustomMultiChildLayoutBox({
  List<RenderBox> children,
  MultiChildLayoutDelegate delegate
}) : _delegate = delegate {
  assert(delegate != null);
  addAll(children);
}