getThumbnail method

Future<List<int>> getThumbnail({
  1. int? width,
  2. int? height,
  3. bool? highQuality = false,
})

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