streamFromInputStream method
Streams the output of invoking the Runnable on the given inputStream
.
Implementation
Stream<RunOutput> streamFromInputStream(
final Stream<RunInput> inputStream, {
final CallOptions? options,
}) {
return inputStream.asyncExpand((final input) {
return stream(input, options: options);
});
}