ListWidget constructor

const ListWidget({
  1. Key? key,
  2. bool separator = false,
  3. bool shrinkWrap = true,
  4. int itemCount = 0,
  5. ScrollPhysics? scrollPhysics,
  6. Axis? scrollDirection,
  7. required Widget itemBuilder(
    1. BuildContext,
    2. int
    ),
  8. ScrollController? scrollController,
  9. bool? reverse,
  10. 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,
});