CaloriesInHeartRateZoneValue.fromJson constructor

CaloriesInHeartRateZoneValue.fromJson(
  1. Map json_
)

Implementation

CaloriesInHeartRateZoneValue.fromJson(core.Map json_)
  : this(
      heartRateZone: json_['heartRateZone'] as core.String?,
      kcal: (json_['kcal'] as core.num?)?.toDouble(),
    );