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