stream method
Streams the output of invoking the Runnable on the given input
.
Implementation
@override
Stream<Map<String, dynamic>> stream(
final RunInput input, {
final RunnableOptions? options,
}) {
return streamFromInputStream(
Stream.value(input),
options: options,
);
}