EnergyQuantityRollup.fromJson constructor

EnergyQuantityRollup.fromJson(
  1. Map json_
)

Implementation

EnergyQuantityRollup.fromJson(core.Map json_)
  : this(
      kcalSum: (json_['kcalSum'] as core.num?)?.toDouble(),
      userProvidedUnitLast: json_['userProvidedUnitLast'] as core.String?,
    );