LineItems constructor

LineItems({
  1. String? price,
  2. int? productId,
  3. int? quantity,
  4. bool? requiresShipping,
  5. String? sku,
  6. int? variantId,
  7. bool? taxable,
})

Implementation

LineItems({
  this.price,
  this.productId,
  this.quantity,
  this.requiresShipping,
  this.sku,
  this.variantId,
  this.taxable,
});