ReferenceRange constructor
ReferenceRange({})
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;