ItemVariationLocationOverrides constructor

const ItemVariationLocationOverrides({
  1. required String locationId,
  2. Money? priceMoney,
  3. CatalogPricingType? pricingType,
  4. bool? trackInventory,
  5. InventoryAlertType? inventoryAlertType,
  6. int? inventoryAlertThreshold,
  7. bool? soldOut,
  8. String? soldOutValidUntil,
})

Implementation

const ItemVariationLocationOverrides({
  required this.locationId,
  this.priceMoney,
  this.pricingType,
  this.trackInventory,
  this.inventoryAlertType,
  this.inventoryAlertThreshold,
  this.soldOut,
  this.soldOutValidUntil,
});