cancelAllThrottles method
Cancels all active throttles.
Implementation
void cancelAllThrottles() {
for (final operation in _throttleOperations.values) {
operation.timer.cancel();
}
_throttleOperations.clear();
}
Cancels all active throttles.
void cancelAllThrottles() {
for (final operation in _throttleOperations.values) {
operation.timer.cancel();
}
_throttleOperations.clear();
}