Error constructor

Error({
  1. ErrorItem? errorItem,
  2. String? code,
  3. String? description,
  4. String? message,
  5. String? details,
  6. String? localeMessage,
})

Implementation

Error({
  this.errorItem,
  this.code,
  this.description,
  this.message,
  this.details,
  this.localeMessage,
});