Measure constructor

Measure({
  1. double? value,
  2. double? min,
  3. double? max,
  4. double? ref,
  5. int? severity,
  6. String? severityCode,
  7. int? evolution,
  8. String? unit,
  9. Set<CodingReference> unitCodes = const {},
  10. String? comment,
  11. String? comparator,
})

Returns a new Measure instance.

Implementation

Measure({
  this.value,
  this.min,
  this.max,
  this.ref,
  this.severity,
  this.severityCode,
  this.evolution,
  this.unit,
  this.unitCodes = const {},
  this.comment,
  this.comparator,
});