getLocationEventTimes method

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

Implementation

Future<PcoCollection<PcoCheckInsLocationEventTime>> getLocationEventTimes(
    {PcoCheckInsLocationEventTimeQuery? query}) async {
  query ??= PcoCheckInsLocationEventTimeQuery();
  var url = '$apiEndpoint/location_event_times';
  return PcoCollection.fromApiCall<PcoCheckInsLocationEventTime>(url,
      query: query, apiVersion: apiVersion);
}