getFromAttachment static method

Future<PcoCollection<PcoServicesZoom>> getFromAttachment(
  1. String attachmentId, {
  2. String? id,
  3. PcoServicesZoomQuery? query,
  4. bool getAll = false,
})

Will get a PcoCollection of PcoServicesZoom objects (expecting many) using a path like this: /services/v2/attachments/$attachmentId/zooms

Getting a PcoCollection is useful even when retrieving a single object because it contains error data and helper functions.

Additional options may be specified by using the query argument, but some query options are also available as boolean flags in this function call too.

Implementation

static Future<PcoCollection<PcoServicesZoom>> getFromAttachment(
  String attachmentId, {
  String? id,
  PcoServicesZoomQuery? query,
  bool getAll = false,
}) async {
  query ??= PcoServicesZoomQuery();
  if (getAll) query.getAll = true;

  var url = '/services/v2/attachments/$attachmentId/zooms';
  if (id != null) url += '/$id';
  return PcoCollection.fromApiCall<PcoServicesZoom>(url,
      query: query, apiVersion: kApiVersion);
}