map<E> method
Returns a cell which evaluates to Iterable.map() applied on the value in this cell.
Unlike the other extension properties and method, the returned cell does not have a key.
Implementation
ValueCell<Iterable<E>> map<E>(E Function(T e) toElement) =>
apply((value) => value.map(toElement)).store();