VLessInboundConfig.single constructor
VLessInboundConfig.single({})
Implementation
factory VLessInboundConfig.single({
required VLessUser client,
required String decryption,
List<VLessInboundFallback>? fallbacks,
String? flow,
List<int>? testseed,
}) => VLessInboundConfig(
clients: [client],
decryption: decryption,
fallbacks: fallbacks,
flow: flow,
testseed: testseed,
);