ErrorResponse constructor

ErrorResponse({
  1. int? status,
  2. String? error,
  3. String? message,
  4. ImportedUserWithoutPasswordErrorResponseContent? content,
  5. String? errorType,
  6. List<Error>? errors,
  7. String? path,
})

Implementation

ErrorResponse({
  this.status,
  this.error,
  this.message,
  this.content,
  this.errorType,
  this.errors,
  this.path,
});