performSearch abstract method

Future<List<T>> performSearch(
  1. Ref<Object?> ref,
  2. PaginatedState<T, Q> state
)

perform a search, you can get the respective inputs of the search using ref e.g. filter, search text, etc... and customize the query based on the pagination state

Implementation

Future<List<T>> performSearch(Ref ref, PaginatedState<T, Q> state);