incrementPageOffset method
- PagedValue<
NotificationDTO> value
override
Subclasses must use this method to increment their internal representation of the page offset.
Subsequent calls to getPagedValue must then used the new offset internally.
Implementation
@override
void incrementPageOffset(PagedValue<NotificationDTO> value) {
offset += _pageSize;
}