debounce method

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

Implementation

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