Skip to content

Instantly share code, notes, and snippets.

@rullyalves
Created August 23, 2019 18:28
Show Gist options
  • Select an option

  • Save rullyalves/1f879fea8d115691baafb41d601d5e03 to your computer and use it in GitHub Desktop.

Select an option

Save rullyalves/1f879fea8d115691baafb41d601d5e03 to your computer and use it in GitHub Desktop.
class ShoppingCartNotifier extends ChangeNotifier {
ShoppingCart cart = ShoppingCart();
remove(Item item) {
cart.remove(item);
notifyListeners();
}
add(Item item) {
cart.add(item);
notifyListeners();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment