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