StreamChannelStdio.otherProcess constructor

StreamChannelStdio.otherProcess(
  1. Stream<List<int>> stdout,
  2. IOSink stdin
)

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);
}