completeReset method
Completely resets the cooldown and counter.
Clears the activation timestamp and resets the activation count to zero.
Implementation
Future<void> completeReset() async {
await reset();
await _activationCount.set(0);
}
Completely resets the cooldown and counter.
Clears the activation timestamp and resets the activation count to zero.
Future<void> completeReset() async {
await reset();
await _activationCount.set(0);
}