GoogleCloudPolicysimulatorV1OrgPolicyOverlayCustomConstraintOverlay.fromJson constructor
GoogleCloudPolicysimulatorV1OrgPolicyOverlayCustomConstraintOverlay.fromJson(
- Map json_
Implementation
GoogleCloudPolicysimulatorV1OrgPolicyOverlayCustomConstraintOverlay.fromJson(
core.Map json_,
) : this(
customConstraint:
json_.containsKey('customConstraint')
? GoogleCloudOrgpolicyV2CustomConstraint.fromJson(
json_['customConstraint']
as core.Map<core.String, core.dynamic>,
)
: null,
customConstraintParent: json_['customConstraintParent'] as core.String?,
);