SecurityPolicyRuleMatcherConfig.fromJson constructor

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