ExternalMetadata.fromJson constructor

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

Implementation

ExternalMetadata.fromJson(Map<String, dynamic> json) {
  spotify =
      json['spotify'] != null ? Spotify.fromJson(json['spotify']) : null;
  deezer = json['deezer'] != null ? Deezer.fromJson(json['deezer']) : null;
}