WooCartItem constructor

WooCartItem({
  1. String? key,
  2. int? id,
  3. int? quantity,
  4. String? name,
  5. String? sku,
  6. String? permalink,
  7. List<WooCartItemImages>? images,
  8. String? price,
  9. String? linePrice,
  10. List<String>? variation,
})

Implementation

WooCartItem(
    {this.key,
    this.id,
    this.quantity,
    this.name,
    this.sku,
    this.permalink,
    this.images,
    this.price,
    this.linePrice,
    this.variation});