AuthzPolicyAuthzRuleTo.fromJson constructor
AuthzPolicyAuthzRuleTo.fromJson(
- Map json_
Implementation
AuthzPolicyAuthzRuleTo.fromJson(core.Map json_)
: this(
notOperations:
(json_['notOperations'] as core.List?)
?.map(
(value) => AuthzPolicyAuthzRuleToRequestOperation.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
operations:
(json_['operations'] as core.List?)
?.map(
(value) => AuthzPolicyAuthzRuleToRequestOperation.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
);