getCheckIns method

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

Available Query Filters:

  • attendee
  • checked_out
  • first_time
  • guest
  • not_checked_out
  • not_one_time_guest
  • one_time_guest
  • regular
  • volunteer

Implementation

Future<PcoCollection<PcoCheckInsCheckIn>> getCheckIns(
    {PcoCheckInsCheckInQuery? query}) async {
  query ??= PcoCheckInsCheckInQuery();
  var url = '$apiEndpoint/check_ins';
  return PcoCollection.fromApiCall<PcoCheckInsCheckIn>(url,
      query: query, apiVersion: apiVersion);
}