AuthzPolicyAuthzRuleHeaderMatch.fromJson constructor

AuthzPolicyAuthzRuleHeaderMatch.fromJson(
  1. Map json_
)

Implementation

AuthzPolicyAuthzRuleHeaderMatch.fromJson(core.Map json_)
  : this(
      name: json_['name'] as core.String?,
      value: json_.containsKey('value')
          ? AuthzPolicyAuthzRuleStringMatch.fromJson(
              json_['value'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );