toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (dataSourceFormula != null) 'dataSourceFormula': dataSourceFormula!,
      if (dataSourceTable != null) 'dataSourceTable': dataSourceTable!,
      if (dataValidation != null) 'dataValidation': dataValidation!,
      if (effectiveFormat != null) 'effectiveFormat': effectiveFormat!,
      if (effectiveValue != null) 'effectiveValue': effectiveValue!,
      if (formattedValue != null) 'formattedValue': formattedValue!,
      if (hyperlink != null) 'hyperlink': hyperlink!,
      if (note != null) 'note': note!,
      if (pivotTable != null) 'pivotTable': pivotTable!,
      if (textFormatRuns != null) 'textFormatRuns': textFormatRuns!,
      if (userEnteredFormat != null) 'userEnteredFormat': userEnteredFormat!,
      if (userEnteredValue != null) 'userEnteredValue': userEnteredValue!,
    };