clearDebounce method

void clearDebounce(
  1. String key
)

清理指定 key 的防抖缓存

Implementation

void clearDebounce(String key) {
  _debounceCache.remove(key);
}