BloodPressure class

This schema represents a person’s blood pressure as a combination of a systolic blood pressure and diastolic blood pressure, and whether the patient was lying down, sitting, or standing when the blood pressure was obtained. This schema can be used for either a single blood pressure measurement, or for basic descriptive statistics (see the DescriptiveStatistic schema).

OMH version 1.0 See blood-pressure

Inheritance
Annotations
  • @JsonSerializable(fieldRename: FieldRename.snake, includeIfNull: false)

Constructors

BloodPressure({required SystolicBloodPressure systolicBloodPressure, required DiastolicBloodPressure diastolicBloodPressure, String? positionDuringMeasurement})
Creates a BloodPressure. The systolicBloodPressure and diastolicBloodPressure are required according to the OMH definition.
BloodPressure.fromJson(Map<String, dynamic> json)
factory

Properties

descriptiveStatistic String?
getter/setter pairinherited
diastolicBloodPressure DiastolicBloodPressure
getter/setter pair
effectiveTimeFrame TimeFrame?
getter/setter pairinherited
hashCode int
The hash code for this object.
no setterinherited
positionDuringMeasurement String?
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
systolicBloodPressure SystolicBloodPressure
getter/setter pair
userNotes String?
getter/setter pairinherited

Methods

getAdditionalProperties() Map<String, Object>
Gets the additional properties.
inherited
getAdditionalProperty(String name) Object?
Gets an additional property.
inherited
getSchemaId() SchemaId
The schema this class corresponds to
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
setAdditionalProperty(String path, Object value) → void
Sets an additional property.
inherited
toJson() Map<String, dynamic>
override
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Properties

SCHEMA_ID SchemaId
getter/setter pair