toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final aggregation = this.aggregation;
final category = this.category;
final derived = this.derived;
final displayLabel = this.displayLabel;
final hasNonzeroData = this.hasNonzeroData;
final hotValue = this.hotValue;
final indexedHotKeys = this.indexedHotKeys;
final indexedKeyRangeInfos = this.indexedKeyRangeInfos;
final info = this.info;
final matrix = this.matrix;
final unit = this.unit;
final visible = this.visible;
return {
'aggregation': ?aggregation,
'category': ?category,
'derived': ?derived,
'displayLabel': ?displayLabel,
'hasNonzeroData': ?hasNonzeroData,
'hotValue': ?hotValue,
'indexedHotKeys': ?indexedHotKeys,
'indexedKeyRangeInfos': ?indexedKeyRangeInfos,
'info': ?info,
'matrix': ?matrix,
'unit': ?unit,
'visible': ?visible,
};
}