HydrationLogRollupValue.fromJson constructor

HydrationLogRollupValue.fromJson(
  1. 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,
    );