copyWithWrapped method
Implementation
WebApiModulesInventoryInventoryInventoryWarehouseSpecificPackageRequest
copyWithWrapped({
Wrapped<String?>? inventoryId,
Wrapped<String?>? warehouseId,
Wrapped<bool?>? isWarehouseSpecific,
}) {
return WebApiModulesInventoryInventoryInventoryWarehouseSpecificPackageRequest(
inventoryId: (inventoryId != null ? inventoryId.value : this.inventoryId),
warehouseId: (warehouseId != null ? warehouseId.value : this.warehouseId),
isWarehouseSpecific: (isWarehouseSpecific != null
? isWarehouseSpecific.value
: this.isWarehouseSpecific),
);
}