debounce method

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

Implementation

VoidCallback debounce({int? timeout}) {
  return FunctionProxy(this, timeout: timeout).debounce;
}