debounce method

ValueChanged<T> debounce({
  1. int? timeout,
})

Implementation

ValueChanged<T> debounce({int? timeout}) {
  return FunctionValueProxy<T>(this, timeout: timeout).debounce;
}