Error constructor

Error({
  1. ErrorErrorType? errorType,
  2. String? errorCode,
  3. String? errorMessage,
  4. String? displayMessage,
  5. String? requestId,
  6. List<Object>? causes,
  7. double? status,
  8. String? documentationUrl,
  9. String? suggestedAction,
})

Implementation

Error({
  this.errorType,
  this.errorCode,
  this.errorMessage,
  this.displayMessage,
  this.requestId,
  this.causes,
  this.status,
  this.documentationUrl,
  this.suggestedAction,
});