WeightQuantityRollup.fromJson constructor

WeightQuantityRollup.fromJson(
  1. Map json_
)

Implementation

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