TokenBucket constructor
Build a token bucket.
Implementation
TokenBucket({
required this.capacity,
required this.refillPerSecond,
DateTime Function()? now,
}) : _tokens = capacity,
_last = (now ?? DateTime.now)(),
_now = now ?? DateTime.now;