CheckError constructor

CheckError({
  1. String? code,
  2. String? detail,
  3. Status? status,
  4. String? subject,
})

Implementation

CheckError({
  this.code,
  this.detail,
  this.status,
  this.subject,
});