nextPage method

Fetches the next batch of videos or returns null if there are no more results.

Implementation

Future<SearchList?> nextPage() async {
  final page = await _page.nextPage(_httpClient);
  if (page == null) {
    return null;
  }

  return SearchList<T>(page.searchContent as List<T>, page, _httpClient);
}