AutoFetchList<T> constructor
AutoFetchList<T> ({
- required Widget builder(
- T item
- required RxPageable<
T> source, - bool reverse = false,
- bool shrinkWrap = false,
- Widget? header,
- Widget? separator,
- VoidCallback? next,
- EdgeInsetsGeometry? padding,
- 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,
});