getLabel method

Will get a collection of PcoCheckInsLabel objects (expecting many) using a path like this: https://api.planningcenteronline.com/check-ins/v2/options/1/label

Implementation

Future<PcoCollection<PcoCheckInsLabel>> getLabel(
    {PcoCheckInsLabelQuery? query}) async {
  query ??= PcoCheckInsLabelQuery();
  var url = '$apiEndpoint/label';
  return PcoCollection.fromApiCall<PcoCheckInsLabel>(url,
      query: query, apiVersion: apiVersion);
}