throttle method
Implementation
ValueChanged<T> throttle({int? timeout, bool trailing = false, String? id}) {
return FunctionValueProxy<T>(
this,
timeout: timeout,
trailing: trailing,
id: id,
).throttle;
}
ValueChanged<T> throttle({int? timeout, bool trailing = false, String? id}) {
return FunctionValueProxy<T>(
this,
timeout: timeout,
trailing: trailing,
id: id,
).throttle;
}