pageTopics abstract method

Future<Page<Topic>> pageTopics({
  1. int pageSize = 50,
})

Start paging through all topics.

The maximum number of topics in each page is specified in pageSize.

Returns a Future which completes with a Page object holding the first page. Use the Page object to move to the next page of topics.

Implementation

Future<Page<Topic>> pageTopics({int pageSize = 50});