import 'package:dart_json_mapper/dart_json_mapper.dart'; @jsonSerializable class ProxyGroup { String? name; String type; List proxies; ProxyGroup({required this.name, required this.type, required this.proxies}); Map toYamlMap() { return { "name": name, "type": type, "proxies": proxies, }; } }