value property

  1. @override
T get value
inherited

The cell's value

Implementation

@override
T get value => compute();
  1. @override
set value (T value)
override

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:

  1. CellObserver.willUpdate()
  2. Set value of cell
  3. CellObserver.update()

Implementation

@override
set value(T value) {
  MutableCell.batch(() {
    reverse(value);
  });
}