throttle method
节流 () async{ await Future.delayed(Duration(seconds: 1)); increase(); }.throttle()
Implementation
VoidCallback throttle() {
return FunctionProxy(this).throttle;
}
节流 () async{ await Future.delayed(Duration(seconds: 1)); increase(); }.throttle()
VoidCallback throttle() {
return FunctionProxy(this).throttle;
}