ArtistFull constructor
ArtistFull({
- required String artistId,
- required String name,
- required String type,
- required List<
ThumbnailFull> thumbnails, - required List<
SongDetailed> topSongs, - required List<
AlbumDetailed> topAlbums, - required List<
AlbumDetailed> topSingles, - required List<
VideoDetailed> topVideos, - required List<
PlaylistDetailed> featuredOn, - required List<
ArtistDetailed> similarArtists,
Implementation
ArtistFull({
required this.artistId,
required this.name,
required this.type,
required this.thumbnails,
required this.topSongs,
required this.topAlbums,
required this.topSingles,
required this.topVideos,
required this.featuredOn,
required this.similarArtists,
});