SmartDebounceStream<T> extension
- on
-
- Stream<
T>
- Stream<
Methods
-
debounceTime(
Duration duration) → Stream< T> -
Available on Stream<
Emits events from this stream only after the source has been silent forT> , provided by the SmartDebounceStream extensionduration. -
throttleTime(
Duration duration, {bool leading = true, bool trailing = true}) → Stream< T> -
Available on Stream<
Emits at most one value perT> , provided by the SmartDebounceStream extensionduration, honoring theleadingandtrailingedge configuration.