RateLimitPolicy constructor
Creates a RateLimitPolicy with a specified limit count and window.
limitCount: The maximum number of allowed requests within the time window.
window: The duration representing the time window for the rate limit.
Implementation
const RateLimitPolicy({required this.limitCount, required this.window});