isNotEmpty property

ValueCell<bool> get isNotEmpty

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

Implementation

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