get static method

Will get a PcoCollection of PcoPeopleBirthdayPerson objects (expecting many) using a path like this: /people/v2/birthday_people

Getting a PcoCollection is useful even when retrieving a single object because it contains error data and helper functions.

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<PcoCollection<PcoPeopleBirthdayPerson>> get({
  String? id,
  PcoPeopleBirthdayPersonQuery? query,
  bool getAll = false,
}) async {
  query ??= PcoPeopleBirthdayPersonQuery();
  if (getAll) query.getAll = true;

  var url = '/people/v2/birthday_people';
  if (id != null) url += '/$id';
  return PcoCollection.fromApiCall<PcoPeopleBirthdayPerson>(url,
      query: query, apiVersion: kApiVersion);
}