HttpError constructor

HttpError(
  1. String url,
  2. String requestedURL,
  3. int status,
  4. String message,
  5. Object? error,
)

Implementation

HttpError(
    String url, String requestedURL, int status, this.message, this.error)
    : httpStatus = HttpStatus(url, requestedURL, status);