WooCart constructor

WooCart({
  1. String? currency,
  2. int? itemCount,
  3. List<WooCartItems>? items,
  4. bool? needsShipping,
  5. String? totalPrice,
  6. int? totalWeight,
})

Implementation

WooCart(
    {this.currency,
    this.itemCount,
    this.items,
    this.needsShipping,
    this.totalPrice,
    this.totalWeight});