GoogleCloudSecuritypostureV1PolicyRuleStringValues.fromJson constructor
GoogleCloudSecuritypostureV1PolicyRuleStringValues.fromJson(
- Map json_
Implementation
GoogleCloudSecuritypostureV1PolicyRuleStringValues.fromJson(core.Map json_)
: this(
allowedValues:
(json_['allowedValues'] as core.List?)
?.map((value) => value as core.String)
.toList(),
deniedValues:
(json_['deniedValues'] as core.List?)
?.map((value) => value as core.String)
.toList(),
);