getAllFromSongAndArrangementAndKey static method

Future<PcoCollection<PcoServicesAttachment>> getAllFromSongAndArrangementAndKey(
  1. String songId,
  2. String arrangementId,
  3. String keyId, {
  4. String? id,
  5. PcoServicesAttachmentQuery? query,
  6. bool includeZooms = false,
})

Will get a PcoCollection containing ALL PcoServicesAttachment objects (expecting many) using a path like this: /services/v2/songs/$songId/arrangements/$arrangementId/keys/$keyId/attachments

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.

This function forces the query.getAll to be true.

Implementation

static Future<PcoCollection<PcoServicesAttachment>>
    getAllFromSongAndArrangementAndKey(
  String songId,
  String arrangementId,
  String keyId, {
  String? id,
  PcoServicesAttachmentQuery? query,
  bool includeZooms = false,
}) async {
  query ??= PcoServicesAttachmentQuery();
  query.getAll = true;

  if (includeZooms) query.include.add('zooms');
  var url =
      '/services/v2/songs/$songId/arrangements/$arrangementId/keys/$keyId/attachments';
  if (id != null) url += '/$id';
  return PcoCollection.fromApiCall<PcoServicesAttachment>(url,
      query: query, apiVersion: kApiVersion);
}