SecurityPolicyRuleMatcherExprOptions.fromJson constructor

SecurityPolicyRuleMatcherExprOptions.fromJson(
  1. Map json_
)

Implementation

SecurityPolicyRuleMatcherExprOptions.fromJson(core.Map json_)
  : this(
      recaptchaOptions:
          json_.containsKey('recaptchaOptions')
              ? SecurityPolicyRuleMatcherExprOptionsRecaptchaOptions.fromJson(
                json_['recaptchaOptions']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
    );