STRCartItem constructor

STRCartItem({
  1. required STRProductItem item,
  2. required int quantity,
  3. double? oldTotalPrice,
  4. double? totalPrice,
})

Implementation

STRCartItem(
    {required this.item,
    required this.quantity,
    this.oldTotalPrice,
    this.totalPrice});