removeAll method

Future<void> removeAll()

Removes all saved values and duration from persistent storage.

This method is primarily intended for testing and debugging purposes.

Implementation

Future<void> removeAll() async {
  await _lock.synchronized(() async {
    await _lastActivated.remove();
    await _activationCount.remove();
  });
}