Status constructor

Status({
  1. String? state,
  2. String? reason,
})

Implementation

Status({
  this.state,
  this.reason,
});