Throttle constructor
Throttle({})
Implementation
Throttle({
this.maxAttempts = 60,
this.duration = const Duration(minutes: 1),
this.includeUserIdentifier = false,
this.customMessage,
this.headers,
this.bypassInDevelopment = true,
}) {
_throttle = ThrottleRequests(
maxAttempts: maxAttempts,
duration: duration,
);
}