getNotes method

Will get a collection of PcoPeopleWorkflowCardNote objects (expecting many) using a path like this: https://api.planningcenteronline.com/people/v2/people/1/workflow_cards/1/notes

Implementation

Future<PcoCollection<PcoPeopleWorkflowCardNote>> getNotes(
    {PcoPeopleWorkflowCardNoteQuery? query}) async {
  query ??= PcoPeopleWorkflowCardNoteQuery();
  var url = '$apiEndpoint/notes';
  return PcoCollection.fromApiCall<PcoPeopleWorkflowCardNote>(url,
      query: query, apiVersion: apiVersion);
}