getFeed method

Will get a collection of PcoCalendarFeed objects (expecting many) using a path like this: https://api.planningcenteronline.com/calendar/v2/events/1/feed

Implementation

Future<PcoCollection<PcoCalendarFeed>> getFeed(
    {PcoCalendarFeedQuery? query}) async {
  query ??= PcoCalendarFeedQuery();
  var url = '$apiEndpoint/feed';
  return PcoCollection.fromApiCall<PcoCalendarFeed>(url,
      query: query, apiVersion: apiVersion);
}