CoreBodyTemperatureRollupValue.fromJson constructor

CoreBodyTemperatureRollupValue.fromJson(
  1. Map json_
)

Implementation

CoreBodyTemperatureRollupValue.fromJson(core.Map json_)
  : this(
      temperatureCelsiusAvg: (json_['temperatureCelsiusAvg'] as core.num?)
          ?.toDouble(),
      temperatureCelsiusMax: (json_['temperatureCelsiusMax'] as core.num?)
          ?.toDouble(),
      temperatureCelsiusMin: (json_['temperatureCelsiusMin'] as core.num?)
          ?.toDouble(),
    );