Right now, my pagination method is I receive a nextPageToken if there is more to the list. And a previousPageToken if I want to go backwards.
When I hit the end of a short list, ListView is just repeating the entire list from the beginning. This makes sense because at the end of the list, the nextPageToken is not filled....the same as the first request at the top of the list.
But I would like the list to end, but ListView doesn't seem to support hitting the "end" of the list.