pageStartedAt property
int
get
pageStartedAt
The starting index of the current page.
Implementation
int get pageStartedAt => totalDisplayItems == 0 ? 0 : (itemsPerPage == -1 ? 1 : ((page - 1) * itemsPerPage) + 1);