VLessOutboundConfig.single constructor

VLessOutboundConfig.single({
  1. required XrayAddress address,
  2. required int port,
  3. int? level,
  4. String? email,
  5. required String id,
  6. String? flow,
  7. String? seed,
  8. required String encryption,
  9. VLessReverseConfig? reverse,
  10. int? testpre,
  11. List<int>? testseed,
})

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