AppliedRules.fromJson constructor

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

Implementation

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