throttle method

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

Implementation

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