PaginatedSearchRequest<T> typedef
Page-aware async request for the paginated search-request constructors.
Receives the current query and the 1-based page to load.
Implementation
typedef PaginatedSearchRequest<T> = Future<List<T>> Function(
String query,
int page,
);