RuleSet.fromJson constructor
Implementation
factory RuleSet.fromJson(Map<String, dynamic> json) {
return RuleSet(
id: RuleSetId.fromJson(json['id'] as String),
loaderId: network.LoaderId.fromJson(json['loaderId'] as String),
sourceText: json['sourceText'] as String,
);
}