ListActivatedRulesInRuleGroupResponse.fromJson constructor

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

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?,
  );
}