toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final barColor = this.barColor;
final barColorStyle = this.barColorStyle;
final data = this.data;
return {
'barColor': ?barColor,
'barColorStyle': ?barColorStyle,
'data': ?data,
};
}