HttpError constructor

HttpError({
  1. required int statusCode,
  2. required String url,
  3. String? statusMessage,
  4. String? bodyJson,
  5. StackTrace? stackTrace,
  6. Exception? cause,
})

Implementation

HttpError({
  required this.statusCode,
  required this.url,
  this.statusMessage,
  this.bodyJson,
  super.stackTrace,
  super.cause
});