toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final applyToPivotTables = this.applyToPivotTables;
  final backgroundColor = this.backgroundColor;
  final backgroundColorStyle = this.backgroundColorStyle;
  final columnIndex = this.columnIndex;
  final dataRange = this.dataRange;
  final filterCriteria = this.filterCriteria;
  final horizontalAlignment = this.horizontalAlignment;
  final textFormat = this.textFormat;
  final title = this.title;
  return {
    'applyToPivotTables': ?applyToPivotTables,
    'backgroundColor': ?backgroundColor,
    'backgroundColorStyle': ?backgroundColorStyle,
    'columnIndex': ?columnIndex,
    'dataRange': ?dataRange,
    'filterCriteria': ?filterCriteria,
    'horizontalAlignment': ?horizontalAlignment,
    'textFormat': ?textFormat,
    'title': ?title,
  };
}