AlbumModel constructor

AlbumModel({
  1. required String documentID,
  2. required String appId,
  3. List<AlbumEntryModel>? albumEntries,
  4. String? description,
  5. BackgroundModel? backgroundImage,
  6. StorageConditionsModel? conditions,
})

Implementation

AlbumModel({
  required this.documentID,
  required this.appId,
  this.albumEntries,
  this.description,
  this.backgroundImage,
  this.conditions,
});