AppliedRules.fromJson constructor
Implementation
factory AppliedRules.fromJson(Map<String, dynamic> json) => AppliedRules(
rules: json['rules'] != null ? Map<String, String>.from(json['rules']) : null,
totalScore: json['totalScore']?.toDouble(),
);