list method

Future<Iterable<AudioFeature>> list(
  1. List<String> trackIds
)

Retrieve multiple audio features of tracks with trackIds

Implementation

Future<Iterable<AudioFeature>> list(List<String> trackIds) async =>
    _listWithIds(
        path: _path,
        ids: trackIds,
        jsonKey: 'audio_features',
        fromJson: AudioFeature.fromJson);