getSingleFromStation static method

Future<PcoCheckInsEvent?> getSingleFromStation(
  1. String stationId,
  2. String id,
  3. {PcoCheckInsEventQuery? query,
  4. bool includeAllRelated = false,
  5. bool includeAttendanceTypes = false,
  6. bool includeEventPeriods = false}
)

Will get a single PcoCheckInsEvent object using a path like this: /check-ins/v2/stations/$stationId/event/[id]

Additional options may be specified by using the query argument, but some query options are also available as boolean flags in this function call too.

Implementation

static Future<PcoCheckInsEvent?> getSingleFromStation(
  String stationId,
  String id, {
  PcoCheckInsEventQuery? query,
  bool includeAllRelated = false,
  bool includeAttendanceTypes = false,
  bool includeEventPeriods = false,
}) async {
  query ??= PcoCheckInsEventQuery();
  if (includeAllRelated) query.include.addAll(PcoCheckInsEvent.canInclude);
  if (includeAttendanceTypes) query.include.add('attendance_types');
  if (includeEventPeriods) query.include.add('event_periods');
  var url = '/check-ins/v2/stations/$stationId/event/$id';
  var retval = await PcoCollection.fromApiCall<PcoCheckInsEvent>(url,
      query: query, apiVersion: kApiVersion);
  return retval.items.isEmpty ? null : retval.items.first;
}