inputStream property
Stream of raw input bytes, if the backend accepts input.
Implementation
@override
Stream<List<int>>? get inputStream {
_inputController ??= StreamController<List<int>>.broadcast(
onListen: _startInputListener,
onCancel: _stopInputListener,
);
return _inputController!.stream;
}