Measure constructor

Measure({
  1. int? severity,
  2. int? evolution,
  3. double? value,
  4. double? ref,
  5. String? severityCode,
  6. String? unit,
  7. Set<CodeStub>? unitCodes,
  8. String? comment,
  9. String? comparator,
  10. String? sign,
  11. List<ReferenceRange>? referenceRanges,
})

Implementation

Measure({
		int? severity,
		int? evolution,
		double? value,
		double? ref,
		String? severityCode,
		String? unit,
		Set<CodeStub>? unitCodes,
		String? comment,
		String? comparator,
		String? sign,
		List<ReferenceRange>? referenceRanges
	}) : value = value ?? null,
	ref = ref ?? null,
	severityCode = severityCode ?? null,
	unit = unit ?? null,
	unitCodes = unitCodes ?? null,
	comment = comment ?? null,
	comparator = comparator ?? null,
	sign = sign ?? null,
	referenceRanges = referenceRanges ?? [],
	_severity = severity ?? null,
	_evolution = evolution ?? null;