toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final chartId = this.chartId;
  final dataSourceFormulaCell = this.dataSourceFormulaCell;
  final dataSourcePivotTableAnchorCell = this.dataSourcePivotTableAnchorCell;
  final dataSourceTableAnchorCell = this.dataSourceTableAnchorCell;
  final sheetId = this.sheetId;
  return {
    'chartId': ?chartId,
    'dataSourceFormulaCell': ?dataSourceFormulaCell,
    'dataSourcePivotTableAnchorCell': ?dataSourcePivotTableAnchorCell,
    'dataSourceTableAnchorCell': ?dataSourceTableAnchorCell,
    'sheetId': ?sheetId,
  };
}