getItemNotes method

Will get a collection of PcoServicesItemNote objects (expecting many) using a path like this: https://api.planningcenteronline.com/services/v2/service_types/1/plans/1/items/1/item_notes

Implementation

Future<PcoCollection<PcoServicesItemNote>> getItemNotes(
    {PcoServicesItemNoteQuery? query}) async {
  query ??= PcoServicesItemNoteQuery();
  var url = '$apiEndpoint/item_notes';
  return PcoCollection.fromApiCall<PcoServicesItemNote>(url,
      query: query, apiVersion: apiVersion);
}