value property

dynamic value

returns the value stored in this cell;

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

Implementation

get value {
  return _value;
}
void value=(dynamic val)

Implementation

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