cast<R> method

ValueCell<List<R>> cast<R>()

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();