FlexGap constructor

const FlexGap({
  1. Key? key,
  2. required List<Widget> children,
  3. Axis? axis,
  4. int startSpacerIndex = 0,
  5. double globalSpace = 0.0,
  6. Map<int, double> locatedSpace = const {},
  7. CrossAxisAlignment? crossAxisAlignment,
  8. MainAxisAlignment? mainAxisAlignment,
  9. bool isScrollable = false,
  10. ScrollPhysics? physics,
  11. bool isAdaptive = false,
  12. ScrollController? scrollController,
  13. bool isScrollableWithReverse = false,
})

Implementation

const FlexGap(
    {super.key,
    required this.children,
    this.axis,
    this.startSpacerIndex = 0,
    this.globalSpace = 0.0,
    this.locatedSpace = const {},
    this.crossAxisAlignment,
    this.mainAxisAlignment,
    this.isScrollable = false,
    this.physics,
    this.isAdaptive = false,
    this.scrollController,
    this.isScrollableWithReverse = false});