UListView constructor

const UListView({
  1. required IndexedWidgetBuilder itemBuilder,
  2. required int itemCount,
  3. Key? key,
  4. Widget? header,
  5. Widget? footer,
  6. ScrollPhysics? physics,
  7. bool shrinkWrap = false,
  8. EdgeInsets? padding,
  9. ScrollController? scrollController,
  10. bool? primary,
  11. bool reverse = false,
})

Implementation

const UListView({
  required this.itemBuilder,
  required this.itemCount,
  super.key,
  this.header,
  this.footer,
  this.physics,
  this.shrinkWrap = false,
  this.padding,
  this.scrollController,
  this.primary,
  this.reverse = false,
});