TooManyRequestsException constructor

const TooManyRequestsException(
  1. String message, {
  2. String? recoverySuggestion,
  3. String? underlyingException,
})

Exception thrown when a request is being made too frequently and is more than what the requested service can handle.

Implementation

const TooManyRequestsException(
  String message, {
  String? recoverySuggestion,
  String? underlyingException,
}) : super(
        message,
        recoverySuggestion: recoverySuggestion,
        underlyingException: underlyingException,
      );