WafExcludedRule.fromJson constructor

WafExcludedRule.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory WafExcludedRule.fromJson(Map<String, dynamic> json) {
  return WafExcludedRule(
    ruleId: json['RuleId'] as String?,
  );
}