nextPage method

Future<MediaPage> nextPage()

Gets the next page of media in the album.

Implementation

Future<MediaPage> nextPage() {
  assert(!isLast);
  return PhotoGallery._listMedia(
    album: album,
    newest: newest,
    total: total,
    skip: end,
    take: items.length,
  );
}