clearDebounceTimestamps static method

void clearDebounceTimestamps()

Clear all debounce timestamps to reset debounce state Removes all entries from the debounce cache, allowing all debounced logs to fire immediately Useful for resetting the debounce state during testing or at application restart

Implementation

static void clearDebounceTimestamps() {
  _debounceTimestamps.clear();
}