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