LocalInventory constructor

LocalInventory({
  1. String? availability,
  2. List<CustomAttribute>? customAttributes,
  3. String? instoreProductLocation,
  4. String? kind,
  5. String? pickupMethod,
  6. String? pickupSla,
  7. Price? price,
  8. int? quantity,
  9. Price? salePrice,
  10. String? salePriceEffectiveDate,
  11. String? storeCode,
})

Implementation

LocalInventory({
  this.availability,
  this.customAttributes,
  this.instoreProductLocation,
  this.kind,
  this.pickupMethod,
  this.pickupSla,
  this.price,
  this.quantity,
  this.salePrice,
  this.salePriceEffectiveDate,
  this.storeCode,
});