getMySchedules method

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

Implementation

Future<PcoCollection<PcoServicesSchedule>> getMySchedules(
    {PcoServicesScheduleQuery? query}) async {
  query ??= PcoServicesScheduleQuery();
  var url = '$apiEndpoint/my_schedules';
  return PcoCollection.fromApiCall<PcoServicesSchedule>(url,
      query: query, apiVersion: apiVersion);
}