InventoryChange constructor

const InventoryChange({
  1. required InventoryChangeType type,
  2. InventoryPhysicalCount? physicalCount,
  3. InventoryAdjustment? adjustment,
  4. InventoryTransfer? transfer,
})

Implementation

const InventoryChange({
  required this.type,
  this.physicalCount,
  this.adjustment,
  this.transfer,
});