getPlanPeople method
Will get a collection of PcoServicesPlanPerson objects (expecting many)
using a path like this: https://api.planningcenteronline.com/services/v2/teams/1/plan_people
Implementation
Future<PcoCollection<PcoServicesPlanPerson>> getPlanPeople(
{PcoServicesPlanPersonQuery? query}) async {
query ??= PcoServicesPlanPersonQuery();
var url = '$apiEndpoint/plan_people';
return PcoCollection.fromApiCall<PcoServicesPlanPerson>(url,
query: query, apiVersion: apiVersion);
}