cancelThrottle method

void cancelThrottle(
  1. String tag
)

Cancels any active throttle with the given tag.

Implementation

void cancelThrottle(String tag) {
  _throttleOperations[tag]?.timer.cancel();
  _throttleOperations.remove(tag);
}