isReady method
Returns true
if the limiter has at least one token available.
This is the opposite of isLimitedNow and is provided as a convenience method.
Implementation
Future<bool> isReady() async {
return !(await isLimitedNow());
}
Returns true
if the limiter has at least one token available.
This is the opposite of isLimitedNow and is provided as a convenience method.
Future<bool> isReady() async {
return !(await isLimitedNow());
}