length property

ValueCell<int> get length

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

Implementation

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