SearchResultItem constructor

SearchResultItem({
  1. required int id,
  2. required String name,
  3. String? type,
  4. int? yearPublished,
  5. String? thumbnailUrl,
  6. String? imageUrl,
})

Implementation

SearchResultItem({
  required this.id,
  required this.name,
  this.type,
  this.yearPublished,
  this.thumbnailUrl,
  this.imageUrl,
});