HttpInbound constructor

HttpInbound({
  1. required Port port,
  2. required String tag,
  3. required HttpInboundSettings settings,
  4. StreamSettings? streamSettings,
  5. InboundSniffing? sniffing,
  6. String? listen,
})

Implementation

HttpInbound({
  required super.port,
  required super.tag,
  required this.settings,
  super.streamSettings,
  super.sniffing,
  super.listen,
}) : super(protocol: Protocol.http);