8 lines
135 B
Dart
8 lines
135 B
Dart
import '../Models/produit.dart';
|
|
|
|
class CartItem {
|
|
final Product product;
|
|
int quantity;
|
|
|
|
CartItem(this.product, this.quantity);
|
|
} |