Error constructor

Error({
  1. int? errorId,
  2. String? errorMessage,
  3. String? errorDescription,
})

Implementation

Error({
  this.errorId,
  this.errorMessage,
  this.errorDescription,
});