cast<R> method
Returns a cell which evaluates to List.cast<R>() applied on the value in this cell.
Implementation
ValueCell<List<R>> cast<R>() =>
apply((value) => value.cast<R>(), key: _ListTypedPropKey<R>(this, #cast))
.store();