getCartItems method

Retrieves a list of PersistentShoppingCartItem from the shopping cart.

Implementation

List<PersistentShoppingCartItem> getCartItems() {
  List<PersistentShoppingCartItem> cartItems = [];

  for (var i = 0; i < _cartBox.length; i++) {
    PersistentShoppingCartItem item = _cartBox.getAt(i)!;
    cartItems.add(item);
  }

  return cartItems;
}