ExcludedRule.fromJson constructor

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

Implementation

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