BlockBody({Key key, Axis mainAxis: Axis.vertical, List<Widget> children: const [] })

Creates a block layout widget.

By default, the mainAxis is Axis.vertical.

Source

BlockBody({
  Key key,
  this.mainAxis: Axis.vertical,
  List<Widget> children: const <Widget>[],
}) : super(key: key, children: children) {
  assert(mainAxis != null);
}