isExpired method
Returns true if the cooldown has expired or was never activated.
This is the inverse of isCooldownActive.
Implementation
Future<bool> isExpired() async => !(await isCooldownActive());
Returns true if the cooldown has expired or was never activated.
This is the inverse of isCooldownActive.
Future<bool> isExpired() async => !(await isCooldownActive());