SpotifyArtists.fromJson constructor

SpotifyArtists.fromJson(
  1. Map<String, dynamic> json
)

Implementation

SpotifyArtists.fromJson(Map<String, dynamic> json) {
  name = json['name'];
  id = json['id'];
}