PagedCompactList<T> constructor

const PagedCompactList<T>({
  1. Key? key,
  2. required PagedCompactListLoader<T> loader,
  3. required PagedCompactListBuilder<T> builder,
  4. required Widget child,
  5. int loadSize = PAGE_SIZE,
  6. PagedCompactListController<T>? controller,
  7. 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);