PagedCompactList<T> constructor
const
PagedCompactList<T> ({
- Key? key,
- required PagedCompactListLoader<
T> loader, - required PagedCompactListBuilder<
T> builder, - required Widget child,
- int loadSize = PAGE_SIZE,
- PagedCompactListController<
T> ? controller, - String? title,
Implementation
const PagedCompactList({
Key? key,
required this.loader,
required this.builder,
required this.child,
this.loadSize = PAGE_SIZE,
this.controller,
this.title
})
: assert(loadSize > 0),
super(key: key);