toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final autoRecalc = this.autoRecalc;
  final defaultFormat = this.defaultFormat;
  final importFunctionsExternalUrlAccessAllowed =
      this.importFunctionsExternalUrlAccessAllowed;
  final iterativeCalculationSettings = this.iterativeCalculationSettings;
  final locale = this.locale;
  final spreadsheetTheme = this.spreadsheetTheme;
  final timeZone = this.timeZone;
  final title = this.title;
  return {
    'autoRecalc': ?autoRecalc,
    'defaultFormat': ?defaultFormat,
    'importFunctionsExternalUrlAccessAllowed':
        ?importFunctionsExternalUrlAccessAllowed,
    'iterativeCalculationSettings': ?iterativeCalculationSettings,
    'locale': ?locale,
    'spreadsheetTheme': ?spreadsheetTheme,
    'timeZone': ?timeZone,
    'title': ?title,
  };
}