CellData constructor

CellData({
  1. DataSourceFormula? dataSourceFormula,
  2. DataSourceTable? dataSourceTable,
  3. DataValidationRule? dataValidation,
  4. CellFormat? effectiveFormat,
  5. ExtendedValue? effectiveValue,
  6. String? formattedValue,
  7. String? hyperlink,
  8. String? note,
  9. PivotTable? pivotTable,
  10. List<TextFormatRun>? textFormatRuns,
  11. CellFormat? userEnteredFormat,
  12. ExtendedValue? userEnteredValue,
})

Implementation

CellData({
  this.dataSourceFormula,
  this.dataSourceTable,
  this.dataValidation,
  this.effectiveFormat,
  this.effectiveValue,
  this.formattedValue,
  this.hyperlink,
  this.note,
  this.pivotTable,
  this.textFormatRuns,
  this.userEnteredFormat,
  this.userEnteredValue,
});