void debounce(VoidCallback action) { _debounceTimer?.cancel(); _debounceTimer = Timer(this, action); }