MiddleOfExpanded constructor

const MiddleOfExpanded({
  1. Key? key,
  2. required Widget child,
  3. int flex = 1,
  4. int childFlex = 1,
  5. Axis scrollDirection = Axis.horizontal,
})

Implementation

const MiddleOfExpanded(
    {Key? key,
    required this.child,
    this.flex = 1,
    this.childFlex = 1,
    this.scrollDirection = Axis.horizontal})
    : super(key: key);