GooglePrivacyDlpV2PolicyRule.fromJson constructor
GooglePrivacyDlpV2PolicyRule.fromJson(
- Map json_
Implementation
GooglePrivacyDlpV2PolicyRule.fromJson(core.Map json_)
: this(
action: json_.containsKey('action')
? GooglePrivacyDlpV2PolicyAction.fromJson(
json_['action'] as core.Map<core.String, core.dynamic>,
)
: null,
conditions: (json_['conditions'] as core.List?)
?.map(
(value) => GooglePrivacyDlpV2PolicyCondition.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
returnVerdict: json_['returnVerdict'] as core.String?,
);