copyWithWrapped method

WebApiModulesInventoryPhysicalInventoryPhysicalInventoryExceptions copyWithWrapped({
  1. Wrapped<String?>? physicalInventoryId,
  2. Wrapped<String?>? scannedCode,
  3. Wrapped<String?>? iCode,
  4. Wrapped<String?>? description,
  5. Wrapped<String?>? exception,
  6. Wrapped<String?>? inventoryId,
  7. Wrapped<String?>? userName,
  8. Wrapped<String?>? date,
  9. Wrapped<String?>? time,
  10. Wrapped<String?>? auditNote,
  11. Wrapped<String?>? recordTitle,
  12. Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>? fields,
  13. Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
  14. Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
  15. Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation,
})

Implementation

WebApiModulesInventoryPhysicalInventoryPhysicalInventoryExceptions
    copyWithWrapped(
        {Wrapped<String?>? physicalInventoryId,
        Wrapped<String?>? scannedCode,
        Wrapped<String?>? iCode,
        Wrapped<String?>? description,
        Wrapped<String?>? exception,
        Wrapped<String?>? inventoryId,
        Wrapped<String?>? userName,
        Wrapped<String?>? date,
        Wrapped<String?>? time,
        Wrapped<String?>? auditNote,
        Wrapped<String?>? recordTitle,
        Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>?
            fields,
        Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
        Wrapped<List<FwStandardDataFwDefaultAttribute>?>?
            defaultFieldAttributes,
        Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation}) {
  return WebApiModulesInventoryPhysicalInventoryPhysicalInventoryExceptions(
      physicalInventoryId: (physicalInventoryId != null
          ? physicalInventoryId.value
          : this.physicalInventoryId),
      scannedCode:
          (scannedCode != null ? scannedCode.value : this.scannedCode),
      iCode: (iCode != null ? iCode.value : this.iCode),
      description:
          (description != null ? description.value : this.description),
      exception: (exception != null ? exception.value : this.exception),
      inventoryId:
          (inventoryId != null ? inventoryId.value : this.inventoryId),
      userName: (userName != null ? userName.value : this.userName),
      date: (date != null ? date.value : this.date),
      time: (time != null ? time.value : this.time),
      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));
}