stream method

  1. @override
Stream<Map<String, dynamic>> stream(
  1. ParserInput input, {
  2. OutputParserOptions? options,
})
override

Streams the output of invoking the Runnable on the given input.

  • input - the input to invoke the Runnable on.
  • options - the options to use when invoking the Runnable.

Implementation

@override
Stream<Map<String, dynamic>> stream(
  final ParserInput input, {
  final OutputParserOptions? options,
}) async* {
  yield await _parseStream(input, options: options);
}