Error constructor

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

Implementation

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