getLocationLabels method

Will get a collection of PcoCheckInsLocationLabel objects (expecting many) using a path like this: https://api.planningcenteronline.com/check-ins/v2/check_ins/1/locations/1/location_labels

Implementation

Future<PcoCollection<PcoCheckInsLocationLabel>> getLocationLabels(
    {PcoCheckInsLocationLabelQuery? query}) async {
  query ??= PcoCheckInsLocationLabelQuery();
  var url = '$apiEndpoint/location_labels';
  return PcoCollection.fromApiCall<PcoCheckInsLocationLabel>(url,
      query: query, apiVersion: apiVersion);
}