inputStream method

Stream<Content> inputStream()

Implementation

Stream<Content> inputStream() async* {
  yield BinaryContent(
    data: Uint8List(0),
    headers: {'kind': 'start', 'request_id': _requestId, 'container_id': _containerId, 'command': command, 'tty': _tty},
  );
  yield* _inputController.stream;
}