toMeasureDto method

MeasureDto toMeasureDto()

Implementation

MeasureDto toMeasureDto() => MeasureDto(
      value: this.value,
      min: this.min,
      max: this.max,
      ref: this.ref,
      severity: this.severity,
      severityCode: this.severityCode,
      evolution: this.evolution,
      unit: this.unit,
      unitCodes: this.unitCodes.map((it) => it.toCodeStubDto()).toSet(),
      comment: this.comment,
      comparator: this.comparator,
    );