Line constructor
Line({
- String? id,
- int? quantity,
- CartLineCost? cost,
- ProductVariant? merchandise,
- String? variantId,
- List<
CartDiscountAllocation?> ? discountAllocations,
The cart line constructor
Implementation
factory Line({
String? id,
int? quantity,
CartLineCost? cost,
ProductVariant? merchandise,
String? variantId,
List<CartDiscountAllocation?>? discountAllocations,
}) = _Line;