copyWithWrapped method

WebApiModulesInventoryRentalInventoryAddRemoveWallRequest copyWithWrapped({
  1. Wrapped<String?>? setId,
  2. Wrapped<String?>? code,
  3. Wrapped<String?>? action,
  4. Wrapped<int?>? quantity,
})

Implementation

WebApiModulesInventoryRentalInventoryAddRemoveWallRequest copyWithWrapped(
    {Wrapped<String?>? setId,
    Wrapped<String?>? code,
    Wrapped<String?>? action,
    Wrapped<int?>? quantity}) {
  return WebApiModulesInventoryRentalInventoryAddRemoveWallRequest(
      setId: (setId != null ? setId.value : this.setId),
      code: (code != null ? code.value : this.code),
      action: (action != null ? action.value : this.action),
      quantity: (quantity != null ? quantity.value : this.quantity));
}