CustomRule.fromJson constructor
Implementation
factory CustomRule.fromJson(Map<String, dynamic> json) {
return CustomRule(
source: json['source'] as String,
target: json['target'] as String,
condition: json['condition'] as String?,
status: json['status'] as String?,
);
}