encode static method
Implementation
static Map<String, dynamic> encode(ReferenceRange value) {
Map<String, dynamic> entityAsMap = {
"low" : value.low,
"high" : value.high,
"stringValue" : value.stringValue,
"tags" : value.tags.map((x0) => CodeStub.encode(x0)).toList(),
"codes" : value.codes.map((x0) => CodeStub.encode(x0)).toList(),
"notes" : value.notes.map((x0) => Annotation.encode(x0)).toList(),
"age" : value.age == null ? null : Range.encode(value.age!)
};
return entityAsMap;
}