DebounceFlow<T> constructor

DebounceFlow<T>(
  1. Flow<T> _source,
  2. Duration _window
)

Implementation

DebounceFlow(
  this._source,
  this._window,
);