@@ -11,6 +11,7 @@ enum HealthDataType {
1111 BLOOD_PRESSURE_DIASTOLIC ,
1212 BLOOD_PRESSURE_SYSTOLIC ,
1313 BODY_FAT_PERCENTAGE ,
14+ LEAN_BODY_MASS ,
1415 BODY_MASS_INDEX ,
1516 BODY_TEMPERATURE ,
1617 BODY_WATER_MASS ,
@@ -125,6 +126,7 @@ const List<HealthDataType> dataTypeKeysIOS = [
125126 HealthDataType .BLOOD_PRESSURE_DIASTOLIC ,
126127 HealthDataType .BLOOD_PRESSURE_SYSTOLIC ,
127128 HealthDataType .BODY_FAT_PERCENTAGE ,
129+ HealthDataType .LEAN_BODY_MASS ,
128130 HealthDataType .BODY_MASS_INDEX ,
129131 HealthDataType .BODY_TEMPERATURE ,
130132 HealthDataType .DIETARY_CARBS_CONSUMED ,
@@ -216,6 +218,7 @@ const List<HealthDataType> dataTypeKeysAndroid = [
216218 HealthDataType .BLOOD_PRESSURE_DIASTOLIC ,
217219 HealthDataType .BLOOD_PRESSURE_SYSTOLIC ,
218220 HealthDataType .BODY_FAT_PERCENTAGE ,
221+ HealthDataType .LEAN_BODY_MASS ,
219222 HealthDataType .BODY_MASS_INDEX ,
220223 HealthDataType .BODY_TEMPERATURE ,
221224 HealthDataType .BODY_WATER_MASS ,
@@ -256,6 +259,7 @@ const Map<HealthDataType, HealthDataUnit> dataTypeToUnit = {
256259 HealthDataType .BLOOD_PRESSURE_DIASTOLIC : HealthDataUnit .MILLIMETER_OF_MERCURY ,
257260 HealthDataType .BLOOD_PRESSURE_SYSTOLIC : HealthDataUnit .MILLIMETER_OF_MERCURY ,
258261 HealthDataType .BODY_FAT_PERCENTAGE : HealthDataUnit .PERCENT ,
262+ HealthDataType .LEAN_BODY_MASS : HealthDataUnit .KILOGRAM ,
259263 HealthDataType .BODY_MASS_INDEX : HealthDataUnit .NO_UNIT ,
260264 HealthDataType .BODY_TEMPERATURE : HealthDataUnit .DEGREE_CELSIUS ,
261265 HealthDataType .BODY_WATER_MASS : HealthDataUnit .KILOGRAM ,
0 commit comments