ListIntervalView.children constructor

const ListIntervalView.children({
  1. Key? key,
  2. Axis direction = Axis.vertical,
  3. num? space,
  4. Widget? separator,
  5. num height = 0,
  6. EdgeInsets? margin,
  7. ScrollPhysics? physics,
  8. Color? color,
  9. bool fullLine = true,
  10. bool primary = true,
  11. bool shrinkWrap = true,
  12. required List<Widget>? children,
  13. num? mainPadding,
  14. num? crossPadding,
  15. num? cacheExtent,
  16. ScrollController? controller,
  17. List<int>? fullLineIgnoreOfIndex,
})

Implementation

const ListIntervalView.children({
  Key? key,
  this.direction = Axis.vertical,
  this.space,
  this.separator,
  this.height = 0,
  this.margin,
  this.physics,
  this.color,
  this.fullLine = true,
  this.primary = true,
  this.shrinkWrap = true,
  required this.children,
  this.mainPadding,
  this.crossPadding,
  this.cacheExtent,
  this.controller,
  this.fullLineIgnoreOfIndex,
})  : this.itemCount = children?.length,
      this.itemBuilder = null,
      super(key: key);