getNextItemTime method

Will get a collection of PcoServicesItemTime objects (expecting many) using a path like this: https://api.planningcenteronline.com/services/v2/series/1/plans/1/live/1/next_item_time

Implementation

Future<PcoCollection<PcoServicesItemTime>> getNextItemTime(
    {PcoServicesItemTimeQuery? query}) async {
  query ??= PcoServicesItemTimeQuery();
  var url = '$apiEndpoint/next_item_time';
  return PcoCollection.fromApiCall<PcoServicesItemTime>(url,
      query: query, apiVersion: apiVersion);
}