getBlockoutExceptions method

Will get a collection of PcoServicesBlockoutException objects (expecting many) using a path like this: https://api.planningcenteronline.com/services/v2/people/1/blockouts/1/blockout_exceptions

Implementation

Future<PcoCollection<PcoServicesBlockoutException>> getBlockoutExceptions(
    {PcoServicesBlockoutExceptionQuery? query}) async {
  query ??= PcoServicesBlockoutExceptionQuery();
  var url = '$apiEndpoint/blockout_exceptions';
  return PcoCollection.fromApiCall<PcoServicesBlockoutException>(url,
      query: query, apiVersion: apiVersion);
}