reverseCompute method

  1. @override
void reverseCompute(
  1. T value
)
override

Set the value of the argument cells in response to the value of the cell being set.

Implementations of this method should be update the values of the cells in arguments based on value, which is the new value of the cell.

This method is executed in a MutableCell.batch call.

Implementation

@override
void reverseCompute(T value) {
  _reverseCompute(value);
}