getPasses method

Will get a collection of PcoCheckInsPass objects (expecting many) using a path like this: https://api.planningcenteronline.com/check-ins/v2/people/1/passes

Implementation

Future<PcoCollection<PcoCheckInsPass>> getPasses(
    {PcoCheckInsPassQuery? query}) async {
  query ??= PcoCheckInsPassQuery();
  var url = '$apiEndpoint/passes';
  return PcoCollection.fromApiCall<PcoCheckInsPass>(url,
      query: query, apiVersion: apiVersion);
}