StopComputeException constructor

const StopComputeException(
  1. dynamic defaultValue
)

Create an exception to stop the computation of the cell's value.

If this exception is thrown during the computation of the cell's initial value, the cell's initial value is set to defaultValue.

Implementation

const StopComputeException(this.defaultValue);