SecurityPolicyRuleMatcherExprOptions.fromJson constructor
SecurityPolicyRuleMatcherExprOptions.fromJson(
- Object? j
Implementation
factory SecurityPolicyRuleMatcherExprOptions.fromJson(Object? j) {
final json = j as Map<String, Object?>;
return SecurityPolicyRuleMatcherExprOptions(
recaptchaOptions: switch (json['recaptchaOptions']) {
null => null,
Object $1 =>
SecurityPolicyRuleMatcherExprOptionsRecaptchaOptions.fromJson($1),
},
);
}