copyWithWrapped method

WebApiModulesInventoryInventoryChangeICodeRequest copyWithWrapped({
  1. Wrapped<String?>? itemId,
  2. Wrapped<String?>? inventoryId,
})

Implementation

WebApiModulesInventoryInventoryChangeICodeRequest copyWithWrapped({
  Wrapped<String?>? itemId,
  Wrapped<String?>? inventoryId,
}) {
  return WebApiModulesInventoryInventoryChangeICodeRequest(
    itemId: (itemId != null ? itemId.value : this.itemId),
    inventoryId: (inventoryId != null ? inventoryId.value : this.inventoryId),
  );
}