ActivityLevelRollupValue.fromJson constructor
ActivityLevelRollupValue.fromJson(
- Map json_
Implementation
ActivityLevelRollupValue.fromJson(core.Map json_)
: this(
activityLevelRollupsByActivityLevelType:
(json_['activityLevelRollupsByActivityLevelType'] as core.List?)
?.map(
(value) => ActivityLevelRollupByActivityLevelType.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
);