Appearance
High Blood Pressure Risk
The High Blood Pressure Risk value is sent as part of the final results.
This indicator is supported for face measurements on Android smartphones and tablets, as well as on iPhones and iPads.
The enum definition for the result includes three entries: Low, Medium, and High.
The application can receive the High Blood Pressure Risk result by implementing VitalSignsListener:
Dart
@override
void onFinalResults(VitalSignsResults results) {
VitalSign? vitalSign = results.getResult(VitalSignTypes.highBloodPressureRisk);
if (vitalSign != null && vitalSign is VitalSignHighBloodPressureRisk) {
VitalSignHighBloodPressureRisk highBloodPressureRisk = vitalSign;
print("High Blood Pressure Risk: ${highBloodPressureRisk.value}");
}
}For general information about vital signs see the Vital Signs and Health Indicators Information Document.
For a list of supported vital signs per platform and measurement mode (face/polar) see the Supported Vital Signs Document.