VBox constructor

const VBox({
  1. Style? style,
  2. Key? key,
  3. bool inherit = false,
  4. List<Widget> children = const <Widget>[],
})

Implementation

const VBox({
  Style? style,
  super.key,
  super.inherit,
  super.children = const <Widget>[],
}) : super(style: style, direction: Axis.vertical);