debounce method

VoidCallback debounce({
  1. int timeout = 500,
})

事件回调防抖

Implementation

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