not method

ValueCell<bool> not()

Create a new cell which is the logical not of this.

A keyed cell is returned which is unique for this cell.

Implementation

ValueCell<bool> not() => apply((value) => !value,
  key: _NotCellKey(this)
);