toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final connectorLineStyle = this.connectorLineStyle;
  final domain = this.domain;
  final firstValueIsTotal = this.firstValueIsTotal;
  final hideConnectorLines = this.hideConnectorLines;
  final series = this.series;
  final stackedType = this.stackedType;
  final totalDataLabel = this.totalDataLabel;
  return {
    'connectorLineStyle': ?connectorLineStyle,
    'domain': ?domain,
    'firstValueIsTotal': ?firstValueIsTotal,
    'hideConnectorLines': ?hideConnectorLines,
    'series': ?series,
    'stackedType': ?stackedType,
    'totalDataLabel': ?totalDataLabel,
  };
}