setValueDebounced method
setValueDebounced method.
Implementation
void setValueDebounced(T newValue, Duration delay) {
throwIfDisposed('set debounced value');
/// Stores the =.
final timer = Timer(delay, () => value = newValue);
setDebounceTimer(timer);
}