StatefulRuleGroup.fromJson constructor

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

Implementation

factory StatefulRuleGroup.fromJson(Map<String, dynamic> json) {
  return StatefulRuleGroup(
    resourceId: json['ResourceId'] as String?,
    ruleGroupName: json['RuleGroupName'] as String?,
  );
}