MastodonRateLimitException constructor

const MastodonRateLimitException({
  1. String message = 'Rate limited',
  2. String? endpoint,
  3. Object? raw,
  4. Duration? retryAfter,
})

Implementation

const MastodonRateLimitException({
  super.message = 'Rate limited',
  super.endpoint,
  super.raw,
  this.retryAfter,
}) : super(statusCode: 429);