getThumbnail method
Get thumbnail data for this album.
It will display the lastly taken medium thumbnail.
Implementation
Future<List<int>> getThumbnail({
int? width,
int? height,
bool? highQuality = false,
}) {
return PhotoGallery.getAlbumThumbnail(
albumId: id,
mediumType: mediumType,
width: width,
height: height,
highQuality: highQuality,
);
}