auditTime method

Observable<T> auditTime(
  1. Duration duration, {
  2. Scheduler? scheduler,
})

Ignores values from this Observable for the given duration, then emits the most recent source value, then repeats the process.

Implementation

Observable<T> auditTime(Duration duration, {Scheduler? scheduler}) =>
    audit<int>(
        constantFunction1(timer(delay: duration, scheduler: scheduler)));