VLessOutboundConfig.single constructor
VLessOutboundConfig.single({})
Implementation
factory VLessOutboundConfig.single({
required XrayAddress address,
required int port,
int? level,
String? email,
required String id,
String? flow,
String? seed,
required String encryption,
VLessReverseConfig? reverse,
int? testpre,
List<int>? testseed,
}) => VLessOutboundConfig(
address: address,
port: port,
level: level,
email: email,
id: id,
flow: flow,
seed: seed,
encryption: encryption,
reverse: reverse,
testpre: testpre,
testseed: testseed,
);