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