debounce method

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

防抖 increase.debounce(timeout: 1000)

Implementation

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