Status constructor

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

Implementation

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