Implementation
@override
Map<String, dynamic> get outbound1 => buildProxyOutbound(
protocol: "vless",
settings: {
"vnext": [
{
"address": address,
"port": port,
"users": [
{
"id": uri.userInfo,
"alterId": null,
"security": security,
"level": level,
"encryption": encryption,
"flow": uri.queryParameters["flow"] ?? "",
}
]
}
],
"servers": null,
"response": null,
"network": null,
"address": null,
"port": null,
"domainStrategy": null,
"redirect": null,
"userLevel": null,
"inboundTag": null,
"secretKey": null,
"peers": null
},
);