13 lines
211 B
Dart
13 lines
211 B
Dart
import 'product_model.dart';
|
|
|
|
class CartItem {
|
|
final Product product;
|
|
int quantity;
|
|
|
|
CartItem({
|
|
required this.product,
|
|
this.quantity = 1,
|
|
});
|
|
|
|
double get subtotal => product.price * quantity;
|
|
} |