value property
CellValue?
get
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;
set
value
(CellValue? val)
Implementation
set value(CellValue? val) {
_sheet.updateCell(cellIndex, val);
}