StatelessRuleGroup.fromJson constructor
Implementation
factory StatelessRuleGroup.fromJson(Map<String, dynamic> json) {
  return StatelessRuleGroup(
    priority: json['Priority'] as int?,
    resourceId: json['ResourceId'] as String?,
    ruleGroupName: json['RuleGroupName'] as String?,
  );
}