isEmpty property

ValueCell<bool> get isEmpty

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

Implementation

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