getSingleFromLabel static method

Future<PcoCheckInsLocationLabel?> getSingleFromLabel(
  1. String labelId,
  2. String id, {
  3. PcoCheckInsLocationLabelQuery? query,
  4. bool includeAllRelated = false,
  5. bool includeLabel = false,
  6. bool includeLocation = false,
})

Will get a single PcoCheckInsLocationLabel object using a path like this: /check-ins/v2/labels/$labelId/location_labels/[id]

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<PcoCheckInsLocationLabel?> getSingleFromLabel(
  String labelId,
  String id, {
  PcoCheckInsLocationLabelQuery? query,
  bool includeAllRelated = false,
  bool includeLabel = false,
  bool includeLocation = false,
}) async {
  query ??= PcoCheckInsLocationLabelQuery();
  if (includeAllRelated)
    query.include.addAll(PcoCheckInsLocationLabel.canInclude);
  if (includeLabel) query.include.add('label');
  if (includeLocation) query.include.add('location');
  var url = '/check-ins/v2/labels/$labelId/location_labels/$id';
  var retval = await PcoCollection.fromApiCall<PcoCheckInsLocationLabel>(url,
      query: query, apiVersion: kApiVersion);
  return retval.items.isEmpty ? null : retval.items.first;
}