FlexBox.column constructor

FlexBox.column(
  1. Mix mix, {
  2. Key? key,
  3. required List<Widget> children,
})

Implementation

factory FlexBox.column(
  Mix mix, {
  Key? key,
  required List<Widget> children,
}) {
  return FlexBox(
    mix,
    key: key,
    children: children,
    direction: Axis.vertical,
  );
}