XrayInbound constructor

const XrayInbound({
  1. required String tag,
  2. required int port,
  3. required String protocol,
  4. String? listen,
  5. JsonMap settings = const {},
  6. XraySniffing? sniffing,
  7. JsonMap? streamSettings,
  8. JsonMap? allocate,
})

Implementation

const XrayInbound({
  required this.tag,
  required this.port,
  required this.protocol,
  this.listen,
  this.settings = const {},
  this.sniffing,
  this.streamSettings,
  this.allocate,
});