isNotEmpty property

ValueCell<bool> get isNotEmpty

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

Implementation

ValueCell<bool> get isNotEmpty => apply((map) => map.isNotEmpty,
    key: _MapPropKey(this, #isNotEmpty)
);