SecurityPolicyRuleMatcherConfig.fromJson constructor
      
      SecurityPolicyRuleMatcherConfig.fromJson(
    
    
- Map json_
Implementation
SecurityPolicyRuleMatcherConfig.fromJson(core.Map json_)
    : this(
        srcIpRanges: json_.containsKey('srcIpRanges')
            ? (json_['srcIpRanges'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );