get method
Gets the specified revision of a Consent, or the latest revision if
revision_id is not specified in the resource name.
Request parameters:
name - Required. The resource name of the Consent to retrieve, of the
form
projects/{project_id}/locations/{location_id}/datasets/{dataset_id}/consentStores/{consent_store_id}/consents/{consent_id}.
In order to retrieve a previous revision of the Consent, also provide the
revision ID:
projects/{project_id}/locations/{location_id}/datasets/{dataset_id}/consentStores/{consent_store_id}/consents/{consent_id}@{revision_id}
Value must have pattern
^projects/\[^/\]+/locations/\[^/\]+/datasets/\[^/\]+/consentStores/\[^/\]+/consents/\[^/\]+$.
$fields - Selector specifying which fields to include in a partial
response.
Completes with a Consent.
Completes with a commons.ApiRequestError if the API endpoint returned an error.
If the used http.Client completes with an error when making a REST call,
this method will complete with the same error.
Implementation
async.Future<Consent> get(
  core.String name, {
  core.String? $fields,
}) async {
  final queryParams_ = <core.String, core.List<core.String>>{
    if ($fields != null) 'fields': [$fields],
  };
  final url_ = 'v1/' + core.Uri.encodeFull('$name');
  final response_ = await _requester.request(
    url_,
    'GET',
    queryParams: queryParams_,
  );
  return Consent.fromJson(response_ as core.Map<core.String, core.dynamic>);
}