combineList method
Combine the existing list (if available) with a new paged value.
By default, this function simply concats the new paged value to the existing list.
Subclasses can override this method to implement additional behavior such as avoiding duplicates in the combined list.
Implementation
List<T> combineList(List<T>? existing, List<T> pageValue) {
return [...?existing, ...pageValue];
}