reset method
Resets the cooldown by clearing the activation timestamp.
This effectively ends the cooldown immediately, but preserves the activation count.
Implementation
Future<void> reset() async {
await _lastActivated.remove();
}
Resets the cooldown by clearing the activation timestamp.
This effectively ends the cooldown immediately, but preserves the activation count.
Future<void> reset() async {
await _lastActivated.remove();
}