Error constructor

Error({
  1. String? errorCode,
  2. String? errorMessage,
  3. String? errorDescription,
  4. dynamic targetValue,
  5. dynamic level,
  6. dynamic businessException,
  7. dynamic apiLogKey,
  8. dynamic customId,
})

Implementation

Error({
  this.errorCode,
  this.errorMessage,
  this.errorDescription,
  this.targetValue,
  this.level,
  this.businessException,
  this.apiLogKey,
  this.customId,
});