getAllFromPerson static method

Will get a PcoCollection containing ALL PcoPeopleMaritalStatus objects (expecting many) using a path like this: /people/v2/people/$personId/marital_status

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.

This function forces the query.getAll to be true.

Implementation

static Future<PcoCollection<PcoPeopleMaritalStatus>> getAllFromPerson(
  String personId, {
  String? id,
  PcoPeopleMaritalStatusQuery? query,
}) async {
  query ??= PcoPeopleMaritalStatusQuery();
  query.getAll = true;

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