RateLimitedException constructor

RateLimitedException(
  1. String message, {
  2. int? status,
})

Implementation

RateLimitedException(String message, {int? status})
  : super(message, "Too Many Requests: ", status: status ?? 429);