StreamChannelStdio.otherProcess constructor
Used when you want to hook into the stdio of ANOTHER process
Implementation
factory StreamChannelStdio.otherProcess(
Stream<List<int>> stdout,
IOSink stdin,
) {
return StreamChannelStdio._(stdout, stdin);
}