CollectionItem constructor

CollectionItem({
  1. required int objectId,
  2. required String name,
  3. int? yearPublished,
  4. int? numPlays,
  5. String? thumbnailUrl,
  6. String? imageUrl,
})

Implementation

CollectionItem({
  required this.objectId,
  required this.name,
  this.yearPublished,
  this.numPlays,
  this.thumbnailUrl,
  this.imageUrl,
});