getActivationCount method

Future<int> getActivationCount()

Returns the number of times the cooldown has been activated.

Implementation

Future<int> getActivationCount() async {
  return await _activationCount.getOrFallback(0);
}