debounce method
Implementation
ValueChanged<T> debounce({int? timeout}) {
return FunctionValueProxy<T>(this, timeout: timeout).debounce;
}
ValueChanged<T> debounce({int? timeout}) {
return FunctionValueProxy<T>(this, timeout: timeout).debounce;
}