GoogleCloudOrgpolicyV2ListCustomConstraintsResponse.fromJson constructor
GoogleCloudOrgpolicyV2ListCustomConstraintsResponse.fromJson(
- Map json_
Implementation
GoogleCloudOrgpolicyV2ListCustomConstraintsResponse.fromJson(core.Map json_)
: this(
customConstraints:
(json_['customConstraints'] as core.List?)
?.map(
(value) => GoogleCloudOrgpolicyV2CustomConstraint.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
nextPageToken: json_['nextPageToken'] as core.String?,
);