GalleryAlbum constructor

GalleryAlbum({
  1. required Album album,
  2. required AlbumType type,
  3. List<int>? thumbnail,
  4. List<DateCategory> dateCategories = const [],
})

Implementation

GalleryAlbum(
    {required this.album,
    required this.type,
    this.thumbnail,
    this.dateCategories = const []});