LoadablePaginatedListView<T extends StoreListItem> constructor
- {Key key,
- @required LoadablePaginatedListViewModel<
T> viewModel, - ScrollPhysics scrollPhysics = const AlwaysScrollableScrollPhysics(),
- double cacheExtent,
- void onChangeContentOffset(
- double offset
Implementation
const LoadablePaginatedListView({
Key key,
@required LoadablePaginatedListViewModel<T> viewModel,
ScrollPhysics scrollPhysics = const AlwaysScrollableScrollPhysics(),
double cacheExtent,
void Function(double offset) onChangeContentOffset,
}) : super(
key: key,
viewModel: viewModel,
scrollPhysics: scrollPhysics,
onChangeContentOffset: onChangeContentOffset,
cacheExtent: cacheExtent,
);