getZooms method

Will get a collection of PcoServicesZoom objects (expecting many) using a path like this: https://api.planningcenteronline.com/services/v2/attachments/1/zooms

Implementation

Future<PcoCollection<PcoServicesZoom>> getZooms(
    {PcoServicesZoomQuery? query}) async {
  query ??= PcoServicesZoomQuery();
  var url = '$apiEndpoint/zooms';
  return PcoCollection.fromApiCall<PcoServicesZoom>(url,
      query: query, apiVersion: apiVersion);
}