getEventTimes method

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

Available Query Filters:

  • available

Implementation

Future<PcoCollection<PcoCheckInsEventTime>> getEventTimes(
    {PcoCheckInsEventTimeQuery? query}) async {
  query ??= PcoCheckInsEventTimeQuery();
  var url = '$apiEndpoint/event_times';
  return PcoCollection.fromApiCall<PcoCheckInsEventTime>(url,
      query: query, apiVersion: apiVersion);
}