ApiException constructor

const ApiException(
  1. String message, {
  2. String? recoverySuggestion,
  3. String? underlyingException,
  4. int? httpStatusCode,
})

Exception thrown from the API Category.

Implementation

const ApiException(
  String message, {
  String? recoverySuggestion,
  String? underlyingException,
  this.httpStatusCode,
}) : super(
        message,
        recoverySuggestion: recoverySuggestion,
        underlyingException: underlyingException,
      );