ListIntervalView.children constructor
const
ListIntervalView.children({
- Key? key,
- Axis direction = Axis.vertical,
- num? space,
- Widget? separator,
- num height = 0,
- EdgeInsets? margin,
- ScrollPhysics? physics,
- Color? color,
- bool fullLine = true,
- bool primary = true,
- bool shrinkWrap = true,
- required List<
Widget> ? children, - num? mainPadding,
- num? crossPadding,
- num? cacheExtent,
- ScrollController? controller,
- 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);