toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (autoRecalc != null) 'autoRecalc': autoRecalc!,
  if (defaultFormat != null) 'defaultFormat': defaultFormat!,
  if (importFunctionsExternalUrlAccessAllowed != null)
    'importFunctionsExternalUrlAccessAllowed':
        importFunctionsExternalUrlAccessAllowed!,
  if (iterativeCalculationSettings != null)
    'iterativeCalculationSettings': iterativeCalculationSettings!,
  if (locale != null) 'locale': locale!,
  if (spreadsheetTheme != null) 'spreadsheetTheme': spreadsheetTheme!,
  if (timeZone != null) 'timeZone': timeZone!,
  if (title != null) 'title': title!,
};