RateLimitingWindow<User> constructor

RateLimitingWindow<User>(
  1. User user,
  2. DateTime startTime,
  3. int pointsConsumed, {
  4. int? pointLimit,
  5. int? remainingPoints,
  6. DateTime? resetTime,
})

Implementation

RateLimitingWindow(this.user, this.startTime, this.pointsConsumed,
    {this.pointLimit, this.remainingPoints, this.resetTime});