ErrorModel constructor

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

Implementation

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