ListActivatedRulesInRuleGroupResponse.fromJson constructor
Implementation
factory ListActivatedRulesInRuleGroupResponse.fromJson(
Map<String, dynamic> json) {
return ListActivatedRulesInRuleGroupResponse(
activatedRules: (json['ActivatedRules'] as List?)
?.whereNotNull()
.map((e) => ActivatedRule.fromJson(e as Map<String, dynamic>))
.toList(),
nextMarker: json['NextMarker'] as String?,
);
}