SearchAlbumResponse constructor

SearchAlbumResponse({
  1. required String id,
  2. required String title,
  3. required List<DownloadLink>? image,
  4. required String? artist,
  5. required String url,
  6. required String type,
  7. required String description,
  8. required int position,
  9. required String year,
  10. required String language,
  11. required String? songIds,
})

Implementation

SearchAlbumResponse({
  required this.id,
  required this.title,
  required this.image,
  required this.artist,
  required this.url,
  required this.type,
  required this.description,
  required this.position,
  required this.year,
  required this.language,
  required this.songIds,
});