STRCart constructor

STRCart({
  1. required List<STRCartItem> items,
  2. double? oldTotalPrice,
  3. required double totalPrice,
  4. required String currency,
})

Implementation

STRCart(
    {required this.items,
    this.oldTotalPrice,
    required this.totalPrice,
    required this.currency});