ErrorResponse constructor

ErrorResponse({
  1. String? error,
  2. String? code,
  3. String? message,
  4. List<ErrorResponseDetailsInner> details = const [],
  5. String? requestId,
})

Returns a new ErrorResponse instance.

Implementation

ErrorResponse({
  this.error,
  this.code,
  this.message,
  this.details = const [],
  this.requestId,
});