Artist constructor

Artist({
  1. required String id,
  2. required String name,
  3. List<String>? genres,
  4. required int popularity,
  5. required int followers,
  6. required String spotifyUrl,
  7. String? href,
  8. String? type,
  9. String? uri,
  10. required List<String> images,
})

Implementation

Artist({
  required this.id,
  required this.name,
  this.genres,
  required this.popularity,
  required this.followers,
  required this.spotifyUrl,
  this.href,
  this.type,
  this.uri,
  required this.images,
});