setPageSize method

Future<void> setPageSize(
  1. int pageSize
)

Changes the page size and reloads from the first page.

Throws when paging is disabled or pageSize violates the configured paging bounds.

Implementation

Future<void> setPageSize(int pageSize) =>
    _dataSet._pagingCoordinator.setPageSize(pageSize);