getBy abstract method

Future<List<T>> getBy(
  1. Page page,
  2. F filter
)

Retrieves items meeting the filter as well as the pagination restriction provided by the page object and. When items are exceeded should return an empty list or throw the PageNotFoundException.

Implementation

Future<List<T>> getBy(Page page, F filter);