stream method
Streams the input
through the RunnableMapInputStream.
input
- the input to stream through the RunnableMapInputStream.options
- not used.
Implementation
@override
Stream<RunOutput> stream(
final RunInput input, {
final RunnableOptions? options,
}) {
return streamFromInputStream(Stream.value(input), options: options);
}