throttle method

VoidCallback throttle()

节流 () async{ await Future.delayed(Duration(seconds: 1)); increase(); }.throttle()

Implementation

VoidCallback throttle() {
  return FunctionProxy(this).throttle;
}