get static method

Will get a PcoCollection of PcoGroupsTagGroup objects (expecting many) using a path like this: /groups/v2/tag_groups

Available Query Filters:

  • public Filter tag groups that are visible on public pages

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<PcoGroupsTagGroup>> get({
  String? id,
  PcoGroupsTagGroupQuery? query,
  bool getAll = false,
}) async {
  query ??= PcoGroupsTagGroupQuery();
  if (getAll) query.getAll = true;

  var url = '/groups/v2/tag_groups';
  if (id != null) url += '/$id';
  return PcoCollection.fromApiCall<PcoGroupsTagGroup>(url,
      query: query, apiVersion: kApiVersion);
}