Status constructor

Status({
  1. String? code,
  2. String? description,
})

Implementation

Status({
  this.code,
  this.description,
});