ListWidget constructor
const
ListWidget({
- Key? key,
- bool separator = false,
- bool shrinkWrap = true,
- int itemCount = 0,
- ScrollPhysics? scrollPhysics,
- Axis? scrollDirection,
- required Widget itemBuilder(),
- ScrollController? scrollController,
- bool? reverse,
- EdgeInsets? padding,
Implementation
const ListWidget({
super.key,
this.separator = false,
this.shrinkWrap = true,
this.itemCount = 0,
this.scrollPhysics,
this.scrollDirection,
required this.itemBuilder,
this.scrollController,
this.reverse,
this.padding,
});