getSignupTeams method

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

Implementation

Future<PcoCollection<PcoServicesTeam>> getSignupTeams(
    {PcoServicesTeamQuery? query}) async {
  query ??= PcoServicesTeamQuery();
  var url = '$apiEndpoint/signup_teams';
  return PcoCollection.fromApiCall<PcoServicesTeam>(url,
      query: query, apiVersion: apiVersion);
}