onStdoutEventWithHistory property
Stream<Event>
get
onStdoutEventWithHistory
Returns a new Stream<Event> of Stdout
events which outputs
historical events before streaming real-time events.
Note: unlike onStdoutEvent
, the returned stream is a single
subscription stream and a new stream is created for each invocation of
this getter.
Implementation
Stream<Event> get onStdoutEventWithHistory => onEventWithHistory('Stdout');