PivotGroupSortValueBucket.fromJson constructor
PivotGroupSortValueBucket.fromJson(
- Map json_
Implementation
PivotGroupSortValueBucket.fromJson(core.Map json_)
: this(
buckets: (json_['buckets'] as core.List?)
?.map((value) => ExtendedValue.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
valuesIndex: json_['valuesIndex'] as core.int?,
);