TimeInHeartRateZoneRollupValue.fromJson constructor

TimeInHeartRateZoneRollupValue.fromJson(
  1. Map json_
)

Implementation

TimeInHeartRateZoneRollupValue.fromJson(core.Map json_)
  : this(
      timeInHeartRateZones: (json_['timeInHeartRateZones'] as core.List?)
          ?.map(
            (value) => TimeInHeartRateZoneValue.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
    );