RateLimits constructor

RateLimits({
  1. int? maxBurstSize,
  2. int? maxConcurrentDispatches,
  3. double? maxDispatchesPerSecond,
})

Implementation

RateLimits({
  this.maxBurstSize,
  this.maxConcurrentDispatches,
  this.maxDispatchesPerSecond,
});