AlbumModel constructor
AlbumModel({
- required String documentID,
- required String appId,
- List<
AlbumEntryModel> ? albumEntries, - String? description,
- BackgroundModel? backgroundImage,
- StorageConditionsModel? conditions,
Implementation
AlbumModel({
required this.documentID,
required this.appId,
this.albumEntries,
this.description,
this.backgroundImage,
this.conditions,
});