LazyLoadListView constructor

LazyLoadListView({
  1. required List<ListItem> listItems,
  2. Function? onListItemTap,
  3. Function? onScrollDidReachEnd,
  4. LazyLoadListViewItemType listItemType = LazyLoadListViewItemType.regularImageListItemType,
  5. bool shouldEndLoad = false,
  6. IconData? fourthRowPrefixIcon,
  7. String endOfListText = 'No more results available',
  8. Color loadingIndicatorColor = Colors.grey,
  9. IndexedWidgetBuilder? customListItemWidgetBuilder,
})

Implementation

LazyLoadListView({
  required this.listItems,
  this.onListItemTap,
  this.onScrollDidReachEnd,
  this.listItemType = LazyLoadListViewItemType.regularImageListItemType,
  this.shouldEndLoad = false,
  this.fourthRowPrefixIcon,
  this.endOfListText = 'No more results available',
  this.loadingIndicatorColor = Colors.grey,
  this.customListItemWidgetBuilder,
});