ActivityLevelRollupValue.fromJson constructor

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