loader property

PagedCompactListLoader<T> loader
final

The loader is a function that uses the the next size of the list to provide a way for the widget to load items into its state.

Called when the Load More button is pressed, and the size provided will increase according to the loadSize.

The output must be all items of the list. If the output.length < size then the Load More button is removed.

Implementation

final PagedCompactListLoader<T> loader;