StyledColumn constructor

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

Implementation

const StyledColumn({
  super.style,
  super.key,
  super.inherit,
  super.children,
}) : super(direction: Axis.vertical);