ReferenceRange constructor

ReferenceRange({
  1. double? low,
  2. double? high,
  3. String? stringValue,
  4. List<CodeStub>? tags,
  5. List<CodeStub>? codes,
  6. List<Annotation>? notes,
  7. Range? age,
})

Implementation

ReferenceRange({
		double? low,
		double? high,
		String? stringValue,
		List<CodeStub>? tags,
		List<CodeStub>? codes,
		List<Annotation>? notes,
		Range? age
	}) : low = low ?? null,
	high = high ?? null,
	stringValue = stringValue ?? null,
	tags = tags ?? [],
	codes = codes ?? [],
	notes = notes ?? [],
	age = age ?? null;