item_carrito_model.dart 247 B

123456789101112131415
  1. import 'toping_model.dart';
  2. import 'producto_model.dart';
  3. class ItemCarrito {
  4. Producto producto;
  5. int cantidad;
  6. List<Toping> toppings;
  7. ItemCarrito({
  8. required this.producto,
  9. this.cantidad = 1,
  10. this.toppings = const [],
  11. });
  12. }