getStations method

Will get a collection of PcoCheckInsStation objects (expecting many) using a path like this: https://api.planningcenteronline.com/check-ins/v2/stations

Implementation

Future<PcoCollection<PcoCheckInsStation>> getStations(
    {PcoCheckInsStationQuery? query}) async {
  query ??= PcoCheckInsStationQuery();
  var url = '$apiEndpoint/stations';
  return PcoCollection.fromApiCall<PcoCheckInsStation>(url,
      query: query, apiVersion: apiVersion);
}