HydrationLogRollupValue.fromJson constructor
HydrationLogRollupValue.fromJson(
- Map json_
Implementation
HydrationLogRollupValue.fromJson(core.Map json_)
: this(
amountConsumed: json_.containsKey('amountConsumed')
? VolumeQuantityRollup.fromJson(
json_['amountConsumed'] as core.Map<core.String, core.dynamic>,
)
: null,
);