getFromSong static method

Future<PcoCollection<PcoServicesTag>> getFromSong(
  1. String songId,
  2. {String? id,
  3. PcoServicesTagQuery? query,
  4. bool getAll = false}
)

Will get a PcoCollection of PcoServicesTag objects (expecting many) using a path like this: /services/v2/songs/$songId/tags

Getting a PcoCollection is useful even when retrieving a single object because it contains error data and helper functions.

Additional options may be specified by using the query argument, but some query options are also available as boolean flags in this function call too.

Implementation

static Future<PcoCollection<PcoServicesTag>> getFromSong(
  String songId, {
  String? id,
  PcoServicesTagQuery? query,
  bool getAll = false,
}) async {
  query ??= PcoServicesTagQuery();
  if (getAll) query.getAll = true;

  var url = '/services/v2/songs/$songId/tags';
  if (id != null) url += '/$id';
  return PcoCollection.fromApiCall<PcoServicesTag>(url,
      query: query, apiVersion: kApiVersion);
}