getAll static method

Future<PcoCollection<PcoCheckInsPerson>> getAll({
  1. String? id,
  2. PcoCheckInsPersonQuery? query,
  3. bool includeOrganization = false,
})

Will get a PcoCollection containing ALL PcoCheckInsPerson objects (expecting many) using a path like this: /check-ins/v2/people

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<PcoCheckInsPerson>> getAll({
  String? id,
  PcoCheckInsPersonQuery? query,
  bool includeOrganization = false,
}) async {
  query ??= PcoCheckInsPersonQuery();
  query.getAll = true;

  if (includeOrganization) query.include.add('organization');
  var url = '/check-ins/v2/people';
  if (id != null) url += '/$id';
  return PcoCollection.fromApiCall<PcoCheckInsPerson>(url,
      query: query, apiVersion: kApiVersion);
}