copyWithWrapped method

WebApiModulesMobileQuikAssetQuikAssetFuncUpdateUnitValueRequest copyWithWrapped({
  1. Wrapped<String?>? warehouseId,
  2. Wrapped<String?>? inventoryId,
  3. Wrapped<double?>? unitValue,
})

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));
}