PaginatedSearchController<T, Q> constructor

PaginatedSearchController<T, Q>({
  1. required SearchProvider<T, Q> searchProvider,
  2. int pageSize = defaultPageSize,
  3. Duration debounceDuration = defaultDebounceDuration,
  4. Q? initialPageQuery,
  5. bool debugLoggingEnabled = true,
})

Implementation

PaginatedSearchController({
  required this.searchProvider,
  this.pageSize = defaultPageSize,
  this.debounceDuration = defaultDebounceDuration,
  this.initialPageQuery,
  this.debugLoggingEnabled = true,
});