listMedia method
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,
);
}