FullAlbum.fromJson constructor

FullAlbum.fromJson(
  1. dynamic json
)

Implementation

FullAlbum.fromJson(dynamic json)
    : tracks = (json['tracks'] as List<dynamic>)
          .map(Song.fromJson)
          .toList(growable: false),
      super.fromJson(json);