AutoFetchList<T> constructor

AutoFetchList<T>({
  1. required Widget builder(
    1. T item
    ),
  2. required RxPageable<T> source,
  3. bool reverse = false,
  4. bool shrinkWrap = false,
  5. Widget? header,
  6. Widget? separator,
  7. VoidCallback? next,
  8. EdgeInsetsGeometry? padding,
  9. Widget? empty,
})

Implementation

AutoFetchList({
  required this.builder,
  required this.source,
  this.reverse = false,
  this.shrinkWrap = false,
  this.header,
  this.separator,
  this.next,
  this.padding,
  this.empty,
});