copyWithWrapped method

WebApiModulesHomeControlsReservedRentalItemLogReservedRentalItemLog copyWithWrapped({
  1. Wrapped<String?>? reservedRentalItemLogId,
  2. Wrapped<String?>? orderId,
  3. Wrapped<String?>? orderItemId,
  4. Wrapped<String?>? rentalItemId,
  5. Wrapped<String?>? inventoryId,
  6. Wrapped<String?>? iCode,
  7. Wrapped<String?>? inventoryTypeId,
  8. Wrapped<String?>? categoryId,
  9. Wrapped<String?>? subCategoryId,
  10. Wrapped<String?>? description,
  11. Wrapped<String?>? warehouseId,
  12. Wrapped<String?>? action,
  13. Wrapped<String?>? actionDateTime,
  14. Wrapped<String?>? usersId,
  15. Wrapped<String?>? barCode,
  16. Wrapped<String?>? serialNumber,
  17. Wrapped<String?>? trackedByCode,
  18. Wrapped<String?>? consignorId,
  19. Wrapped<String?>? consignor,
  20. Wrapped<String?>? orderNumber,
  21. Wrapped<String?>? orderDescription,
  22. Wrapped<String?>? orderType,
  23. Wrapped<String?>? dealId,
  24. Wrapped<String?>? deal,
  25. Wrapped<String?>? nameFml,
  26. Wrapped<DateTime?>? fromDateTime,
  27. Wrapped<DateTime?>? toDateTime,
  28. Wrapped<String?>? auditNote,
  29. Wrapped<String?>? recordTitle,
  30. Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>? fields,
  31. Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
  32. Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
  33. Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation,
})

Implementation

WebApiModulesHomeControlsReservedRentalItemLogReservedRentalItemLog
    copyWithWrapped(
        {Wrapped<String?>? reservedRentalItemLogId,
        Wrapped<String?>? orderId,
        Wrapped<String?>? orderItemId,
        Wrapped<String?>? rentalItemId,
        Wrapped<String?>? inventoryId,
        Wrapped<String?>? iCode,
        Wrapped<String?>? inventoryTypeId,
        Wrapped<String?>? categoryId,
        Wrapped<String?>? subCategoryId,
        Wrapped<String?>? description,
        Wrapped<String?>? warehouseId,
        Wrapped<String?>? action,
        Wrapped<String?>? actionDateTime,
        Wrapped<String?>? usersId,
        Wrapped<String?>? barCode,
        Wrapped<String?>? serialNumber,
        Wrapped<String?>? trackedByCode,
        Wrapped<String?>? consignorId,
        Wrapped<String?>? consignor,
        Wrapped<String?>? orderNumber,
        Wrapped<String?>? orderDescription,
        Wrapped<String?>? orderType,
        Wrapped<String?>? dealId,
        Wrapped<String?>? deal,
        Wrapped<String?>? nameFml,
        Wrapped<DateTime?>? fromDateTime,
        Wrapped<DateTime?>? toDateTime,
        Wrapped<String?>? auditNote,
        Wrapped<String?>? recordTitle,
        Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>?
            fields,
        Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
        Wrapped<List<FwStandardDataFwDefaultAttribute>?>?
            defaultFieldAttributes,
        Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation}) {
  return WebApiModulesHomeControlsReservedRentalItemLogReservedRentalItemLog(
      reservedRentalItemLogId: (reservedRentalItemLogId != null
          ? reservedRentalItemLogId.value
          : this.reservedRentalItemLogId),
      orderId: (orderId != null ? orderId.value : this.orderId),
      orderItemId:
          (orderItemId != null ? orderItemId.value : this.orderItemId),
      rentalItemId:
          (rentalItemId != null ? rentalItemId.value : this.rentalItemId),
      inventoryId:
          (inventoryId != null ? inventoryId.value : this.inventoryId),
      iCode: (iCode != null ? iCode.value : this.iCode),
      inventoryTypeId: (inventoryTypeId != null
          ? inventoryTypeId.value
          : this.inventoryTypeId),
      categoryId: (categoryId != null ? categoryId.value : this.categoryId),
      subCategoryId:
          (subCategoryId != null ? subCategoryId.value : this.subCategoryId),
      description:
          (description != null ? description.value : this.description),
      warehouseId:
          (warehouseId != null ? warehouseId.value : this.warehouseId),
      action: (action != null ? action.value : this.action),
      actionDateTime: (actionDateTime != null
          ? actionDateTime.value
          : this.actionDateTime),
      usersId: (usersId != null ? usersId.value : this.usersId),
      barCode: (barCode != null ? barCode.value : this.barCode),
      serialNumber:
          (serialNumber != null ? serialNumber.value : this.serialNumber),
      trackedByCode:
          (trackedByCode != null ? trackedByCode.value : this.trackedByCode),
      consignorId:
          (consignorId != null ? consignorId.value : this.consignorId),
      consignor: (consignor != null ? consignor.value : this.consignor),
      orderNumber:
          (orderNumber != null ? orderNumber.value : this.orderNumber),
      orderDescription: (orderDescription != null
          ? orderDescription.value
          : this.orderDescription),
      orderType: (orderType != null ? orderType.value : this.orderType),
      dealId: (dealId != null ? dealId.value : this.dealId),
      deal: (deal != null ? deal.value : this.deal),
      nameFml: (nameFml != null ? nameFml.value : this.nameFml),
      fromDateTime:
          (fromDateTime != null ? fromDateTime.value : this.fromDateTime),
      toDateTime: (toDateTime != null ? toDateTime.value : this.toDateTime),
      auditNote: (auditNote != null ? auditNote.value : this.auditNote),
      recordTitle:
          (recordTitle != null ? recordTitle.value : this.recordTitle),
      fields: (fields != null ? fields.value : this.fields),
      custom: (custom != null ? custom.value : this.custom),
      defaultFieldAttributes: (defaultFieldAttributes != null
          ? defaultFieldAttributes.value
          : this.defaultFieldAttributes),
      translation:
          (translation != null ? translation.value : this.translation));
}