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,
    skip: end,
    take: items.length,
    lightWeight: lightWeight
  );
}