map<E> method
Returns a cell which evaluates to Iterable.map applied on the value in this cell.
Implementation
ValueCell<Iterable<E>> map<E>(E Function(T e) convert) =>
apply((value) => value.map(convert),
key: _IterablePropKey(this, (#map, convert))
).store();