ListViewRendering<T> constructor

const ListViewRendering<T>({
  1. Key? key,
  2. required double? itemExtent,
  3. required bool isLazyLoadingEnabled,
  4. required Widget itemBuilder(
    1. T item
    )?,
  5. required List<T> list,
  6. required EdgeInsetsGeometry? padding,
  7. required ScrollPhysics? physics,
  8. required bool reverse,
  9. required ScrollController scrollController,
  10. required Axis scrollDirection,
  11. required bool shrinkWrap,
})

Implementation

const ListViewRendering({
  Key? key,
  required this.itemExtent,
  required this.isLazyLoadingEnabled,
  required this.itemBuilder,
  required this.list,
  required this.padding,
  required this.physics,
  required this.reverse,
  required this.scrollController,
  required this.scrollDirection,
  required this.shrinkWrap,
}) : super(key: key);