toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final backgroundColor = this.backgroundColor;
final backgroundColorStyle = this.backgroundColorStyle;
final dataSourceColumnReference = this.dataSourceColumnReference;
final dimensionIndex = this.dimensionIndex;
final foregroundColor = this.foregroundColor;
final foregroundColorStyle = this.foregroundColorStyle;
final sortOrder = this.sortOrder;
return {
'backgroundColor': ?backgroundColor,
'backgroundColorStyle': ?backgroundColorStyle,
'dataSourceColumnReference': ?dataSourceColumnReference,
'dimensionIndex': ?dimensionIndex,
'foregroundColor': ?foregroundColor,
'foregroundColorStyle': ?foregroundColorStyle,
'sortOrder': ?sortOrder,
};
}