AuthzPolicyAuthzRuleToRequestOperationHeaderSet.fromJson constructor

AuthzPolicyAuthzRuleToRequestOperationHeaderSet.fromJson(
  1. 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(),
    );