getFromSeriesAndPlanAndLive static method

Future<PcoCollection<PcoServicesItem>> getFromSeriesAndPlanAndLive(
  1. String seriesId,
  2. String planId,
  3. String liveId, {
  4. String? id,
  5. PcoServicesItemQuery? query,
  6. bool getAll = false,
  7. bool includeAllRelated = false,
  8. bool includeArrangement = false,
  9. bool includeItemNotes = false,
  10. bool includeItemTimes = false,
  11. bool includeKey = false,
  12. bool includeMedia = false,
  13. bool includeSelectedAttachment = false,
  14. bool includeSong = false,
})

Will get a PcoCollection of PcoServicesItem objects (expecting many) using a path like this: /services/v2/series/$seriesId/plans/$planId/live/$liveId/items

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<PcoServicesItem>> getFromSeriesAndPlanAndLive(
  String seriesId,
  String planId,
  String liveId, {
  String? id,
  PcoServicesItemQuery? query,
  bool getAll = false,
  bool includeAllRelated = false,
  bool includeArrangement = false,
  bool includeItemNotes = false,
  bool includeItemTimes = false,
  bool includeKey = false,
  bool includeMedia = false,
  bool includeSelectedAttachment = false,
  bool includeSong = false,
}) async {
  query ??= PcoServicesItemQuery();
  if (getAll) query.getAll = true;
  if (includeAllRelated) query.include.addAll(PcoServicesItem.canInclude);
  if (includeArrangement) query.include.add('arrangement');
  if (includeItemNotes) query.include.add('item_notes');
  if (includeItemTimes) query.include.add('item_times');
  if (includeKey) query.include.add('key');
  if (includeMedia) query.include.add('media');
  if (includeSelectedAttachment) query.include.add('selected_attachment');
  if (includeSong) query.include.add('song');
  var url = '/services/v2/series/$seriesId/plans/$planId/live/$liveId/items';
  if (id != null) url += '/$id';
  return PcoCollection.fromApiCall<PcoServicesItem>(url,
      query: query, apiVersion: kApiVersion);
}