class CartProvider with ChangeNotifier { List products = []; addProduct(Product product) { products.add(product); notifyListeners(); } }