HttpErrorContext constructor

HttpErrorContext({
  1. required String method,
  2. required String requestPath,
  3. required int responseCode,
  4. required String responseBody,
})

Implementation

HttpErrorContext({
  required this.method,
  required this.requestPath,
  required this.responseCode,
  required this.responseBody,
});