value property

CellValue? value

returns the value stored in this cell;

It will return null if no value is stored in this cell.

Implementation

CellValue? get value => _value;
void value=(CellValue? val)

Implementation

set value(CellValue? val) {
  _sheet.updateCell(cellIndex, val);
}