VBox constructor

const VBox({
  1. Style? style,
  2. @Deprecated('Use the the style parameter instead') Mix? mix,
  3. Key? key,
  4. bool inherit = false,
  5. List<Widget> children = const <Widget>[],
})

Implementation

const VBox({
  Style? style,
  @Deprecated('Use the the style parameter instead') Mix? mix,
  super.key,
  super.inherit,
  super.children = const <Widget>[],
}) : super(style: style ?? mix, direction: Axis.vertical);