debounce<R> method
Emits a value from this Observable only after a particular time span determined by another Observable has passed without another emission.
Implementation
Observable<T> debounce<R>(DurationSelector<T, R> durationSelector) =>
DebounceObservable<T, R>(this, durationSelector);