cancelThrottle method
- String tag
Cancels any active throttle with the given tag
.
Implementation
void cancelThrottle(String tag) {
_throttleOperations[tag]?.timer.cancel();
_throttleOperations.remove(tag);
}
Cancels any active throttle with the given tag
.
void cancelThrottle(String tag) {
_throttleOperations[tag]?.timer.cancel();
_throttleOperations.remove(tag);
}