cancel static method

void cancel(
  1. String tag
)

Cancels any active throttle with the given tag.

Implementation

static void cancel(String tag) {
  _operations[tag]?.timer.cancel();
  _operations.remove(tag);
}