getCurrentEventTimes method

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

Implementation

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