VLessInboundConfig.single constructor

VLessInboundConfig.single({
  1. required VLessUser client,
  2. required String decryption,
  3. List<VLessInboundFallback>? fallbacks,
  4. String? flow,
  5. List<int>? testseed,
})

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,
);