listMedia method

Future<MediaPage> listMedia({
  1. int? skip,
  2. int? take,
  3. bool? lightWeight,
})

list media in the album.

Pagination can be controlled out of skip (defaults to 0) and take (defaults to <total>).

Implementation

Future<MediaPage> listMedia({
  int? skip,
  int? take,
  bool? lightWeight,
}) {
  return PhotoGallery._listMedia(
    album: this,
    skip: skip,
    take: take,
    lightWeight: lightWeight,
  );
}