ListIntervalView.nested constructor

const ListIntervalView.nested({
  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 = false,
  11. bool shrinkWrap = true,
  12. required int? itemCount,
  13. required IndexedWidgetBuilder? itemBuilder,
  14. num? mainPadding = 0,
  15. num? crossPadding = 0,
  16. num? cacheExtent,
  17. ScrollController? controller,
  18. List<int>? fullLineIgnoreOfIndex,
})

Implementation

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