getAll static method

Future<PcoCollection<PcoCalendarEvent>> getAll(
  1. {String? id,
  2. PcoCalendarEventQuery? query,
  3. bool includeAllRelated = false,
  4. bool includeAttachments = false,
  5. bool includeOwner = false,
  6. bool includeTags = false}
)

Will get a PcoCollection containing ALL PcoCalendarEvent objects (expecting many) using a path like this: /calendar/v2/events

Available Query Filters:

  • future

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<PcoCalendarEvent>> getAll({
  String? id,
  PcoCalendarEventQuery? query,
  bool includeAllRelated = false,
  bool includeAttachments = false,
  bool includeOwner = false,
  bool includeTags = false,
}) async {
  query ??= PcoCalendarEventQuery();
  query.getAll = true;
  if (includeAllRelated) query.include.addAll(PcoCalendarEvent.canInclude);
  if (includeAttachments) query.include.add('attachments');
  if (includeOwner) query.include.add('owner');
  if (includeTags) query.include.add('tags');
  var url = '/calendar/v2/events';
  if (id != null) url += '/$id';
  return PcoCollection.fromApiCall<PcoCalendarEvent>(url,
      query: query, apiVersion: kApiVersion);
}