copyWithWrapped method

WebApiModulesInventoryRentalInventorySetBrochureUpdateOrderRequest copyWithWrapped({
  1. Wrapped<String?>? brochureId,
  2. Wrapped<String?>? inventoryId,
  3. Wrapped<String?>? orderId,
})

Implementation

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