clearThrottle method

void clearThrottle(
  1. String key
)

清理指定 key 的节流缓存

Implementation

void clearThrottle(String key) {
  _throttleCache.remove(key);
}