isEmpty property

ValueCell<bool> get isEmpty

Returns a cell which evaluates to Iterable.isEmpty applied on the value in this cell.

Implementation

ValueCell<bool> get isEmpty => apply((value) => value.isEmpty,
    key: _IterablePropKey(this, #isEmpty)
).store(changesOnly: true);