RenderBlock({List<RenderBox> children, Axis mainAxis: Axis.vertical })

Creates a block render object.

By default, the block positions children along the vertical axis.

Source

RenderBlock({
  List<RenderBox> children,
  Axis mainAxis: Axis.vertical
}) : _mainAxis = mainAxis {
  addAll(children);
}