Status constructor

Status({
  1. String? type,
  2. int? missing,
  3. int? total,
  4. int? other,
  5. List<Term>? terms,
})

Implementation

Status({
  this.type,
  this.missing,
  this.total,
  this.other,
  this.terms,
});