STRCartItem constructor
STRCartItem({
- required STRProductItem item,
- required int quantity,
- double? oldTotalPrice,
- double? totalPrice,
Implementation
STRCartItem(
{required this.item,
required this.quantity,
this.oldTotalPrice,
this.totalPrice});