toJson method

Map<String, dynamic> toJson()

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,
  };
}