SecurityPolicyRuleHttpHeaderActionHttpHeaderOption.fromJson constructor
      
      SecurityPolicyRuleHttpHeaderActionHttpHeaderOption.fromJson(
    
    
- Map json_
Implementation
SecurityPolicyRuleHttpHeaderActionHttpHeaderOption.fromJson(core.Map json_)
    : this(
        headerName: json_.containsKey('headerName')
            ? json_['headerName'] as core.String
            : null,
        headerValue: json_.containsKey('headerValue')
            ? json_['headerValue'] as core.String
            : null,
      );