toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final chipRuns = this.chipRuns;
  final dataSourceFormula = this.dataSourceFormula;
  final dataSourceTable = this.dataSourceTable;
  final dataValidation = this.dataValidation;
  final effectiveFormat = this.effectiveFormat;
  final effectiveValue = this.effectiveValue;
  final formattedValue = this.formattedValue;
  final hyperlink = this.hyperlink;
  final note = this.note;
  final pivotTable = this.pivotTable;
  final textFormatRuns = this.textFormatRuns;
  final userEnteredFormat = this.userEnteredFormat;
  final userEnteredValue = this.userEnteredValue;
  return {
    'chipRuns': ?chipRuns,
    'dataSourceFormula': ?dataSourceFormula,
    'dataSourceTable': ?dataSourceTable,
    'dataValidation': ?dataValidation,
    'effectiveFormat': ?effectiveFormat,
    'effectiveValue': ?effectiveValue,
    'formattedValue': ?formattedValue,
    'hyperlink': ?hyperlink,
    'note': ?note,
    'pivotTable': ?pivotTable,
    'textFormatRuns': ?textFormatRuns,
    'userEnteredFormat': ?userEnteredFormat,
    'userEnteredValue': ?userEnteredValue,
  };
}