isReady method

Future<bool> isReady()

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());
}