UListView constructor
const
UListView({
- List<
Widget> ? items, - IndexedWidgetBuilder? itemBuilder,
- int? itemCount,
- Key? key,
- Widget? header,
- ScrollPhysics? physics,
- bool shrinkWrap = false,
- EdgeInsets? padding,
- ScrollController? scrollController,
- bool? primary,
- bool reverse = false,
Implementation
const UListView({
this.items,
this.itemBuilder,
this.itemCount,
super.key,
this.header,
this.footer,
this.physics,
this.shrinkWrap = false,
this.padding,
this.scrollController,
this.primary,
this.reverse = false,
}) : assert(items != null || (itemBuilder != null && itemCount != null), "Provide either items or itemBuilder with itemCount.");