FlexBox.row constructor

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

Implementation

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