ChannelCommunication<In, Out, Response> constructor

ChannelCommunication<In, Out, Response>(
  1. Channel<In, dynamic, dynamic> input,
  2. Channel<dynamic, Out, Response> output, {
  3. ChannelAction<In, Out, Response>? action,
})

Implementation

ChannelCommunication(this.input, this.output, {super.action})
    : super(input.sink, output.stream);