OutboundDetourConfig.vless constructor
OutboundDetourConfig.vless({
- required VLessOutboundConfig settings,
- String? tag,
- String? sendThrough,
- StreamConfig? streamSettings,
- ProxyConfig? proxySettings,
- MuxConfig? mux,
- XrayTargetStrategy? targetStrategy,
Implementation
factory OutboundDetourConfig.vless({
required VLessOutboundConfig settings,
String? tag,
String? sendThrough,
StreamConfig? streamSettings,
ProxyConfig? proxySettings,
MuxConfig? mux,
XrayTargetStrategy? targetStrategy,
}) => OutboundDetourConfig.fromProtocol(
protocol: XrayOutboundProtocol.vless,
sendThrough: sendThrough,
tag: tag,
settings: settings,
streamSettings: streamSettings,
proxySettings: proxySettings,
mux: mux,
targetStrategy: targetStrategy,
);