getAll abstract method

Future<List<T>> getAll(
  1. Page page
)

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

Implementation

Future<List<T>> getAll(Page page);