length property
Returns a cell which evaluates to Iterable.length applied on the value in this cell.
Implementation
ValueCell<int> get length => apply((value) => value.length,
key: _IterablePropKey(this, #length)
).store(changesOnly: true);
Returns a cell which evaluates to Iterable.length applied on the value in this cell.
ValueCell<int> get length => apply((value) => value.length,
key: _IterablePropKey(this, #length)
).store(changesOnly: true);