throttle method

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

Implementation

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