Adapter to provide the following to {@link org.multibit.mbm.client.interfaces.rest.api.cart.CartDto}:
22232425262728
* @return A {@link CartItemDto} */ public static CartItemDto copyCartItem(CartItem cartItem) { Preconditions.checkNotNull(cartItem, "'cartItem' cannot be null"); return new CopyCartItem().on(cartItem); }