FlexBox constructor

const FlexBox({
  1. Mix<Attribute>? mix,
  2. Key? key,
  3. List<Variant<Attribute>>? variants,
  4. bool inherit = false,
  5. required Axis direction,
  6. required List<Widget> children,
})

Implementation

const FlexBox({
  Mix? mix,
  Key? key,
  List<Variant>? variants,
  bool inherit = false,
  required this.direction,
  required this.children,
}) : super(
        mix,
        variants: variants,
        inherit: inherit,
        key: key,
      );