Skip to content

Instantly share code, notes, and snippets.

@slamdon
Created February 23, 2020 12:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save slamdon/3f8927425f466882d09e60dd4609ff8e to your computer and use it in GitHub Desktop.
Save slamdon/3f8927425f466882d09e60dd4609ff8e to your computer and use it in GitHub Desktop.
CartProvider
class CartProvider with ChangeNotifier {
List<Product> products = [];
addProduct(Product product) {
products.add(product);
notifyListeners();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment