Skip to content

Heart Age

The Heart Age value is sent as part of the final results.

The User Information is required to calculate the Heart Age result. If any details are missing from the User Information, the Heart Age will not be calculated. For more information on User Information, see the User Information page.

This indicator is supported for face measurements on Android smartphones and tablets, as well as on iPhones.

The application can receive the Heart Age result by implementing VitalSignsListener:

Dart
@override
void onFinalResults(VitalSignsResults results) {
    VitalSign? vitalSign = results.getResult(VitalSignTypes.heartAge);
    if (vitalSign != null && vitalSign is VitalSignHeartAge) {
        VitalSignHeartAge heartAge = vitalSign;
        print("Heart Age: ${heartAge.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.