reversed property
Returns a cell which evaluates to List.reversed applied on the value in this cell.
Implementation
ValueCell<Iterable<T>> get reversed =>
apply((value) => value.reversed, key: _ListPropKey(this, #reversed));
Returns a cell which evaluates to List.reversed applied on the value in this cell.
ValueCell<Iterable<T>> get reversed =>
apply((value) => value.reversed, key: _ListPropKey(this, #reversed));