value property
The cell's value
Implementation
@override
T get value => state.value;
Set the value of the cell.
Unless isBatchUpdate
is true, the observers of the cell should be
notified by calling the methods of CellObserver in the following order:
- CellObserver.willUpdate()
- Set value of cell
- CellObserver.update()
Implementation
@override
set value(T value) {
state.value = value;
}