RateLimitConfig.development constructor

RateLimitConfig.development()

Development configuration with relaxed limits.

Implementation

factory RateLimitConfig.development() {
  return const RateLimitConfig(
    maxRequests: 1000,
    window: Duration(minutes: 1),
    maxRequestsPerIP: 10000,
  );
}