copyWithWrapped method

WebApiModulesAgentOrderOrderDocument copyWithWrapped({
  1. Wrapped<String?>? orderId,
  2. Wrapped<bool?>? copying,
  3. Wrapped<String?>? documentId,
  4. Wrapped<String?>? documentTypeId,
  5. Wrapped<String?>? uniqueId1,
  6. Wrapped<String?>? uniqueId2,
  7. Wrapped<int?>? uniqueId1Int,
  8. Wrapped<String?>? description,
  9. Wrapped<String?>? inputByUsersId,
  10. Wrapped<String?>? attachDate,
  11. Wrapped<String?>? attachTime,
  12. Wrapped<bool?>? attachToEmail,
  13. Wrapped<bool?>? inactive,
  14. Wrapped<String?>? dateStamp,
  15. Wrapped<String?>? extension,
  16. Wrapped<String?>? documentType,
  17. Wrapped<String?>? inputBy,
  18. Wrapped<bool?>? hasImage,
  19. Wrapped<bool?>? hasFile,
  20. Wrapped<int?>? appImageCount,
  21. Wrapped<bool?>? fileIsModified,
  22. Wrapped<String?>? fileDataUrl,
  23. Wrapped<String?>? filePath,
  24. Wrapped<String?>? auditNote,
  25. Wrapped<String?>? recordTitle,
  26. Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>? fields,
  27. Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
  28. Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
  29. Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation,
})

Implementation

WebApiModulesAgentOrderOrderDocument copyWithWrapped(
    {Wrapped<String?>? orderId,
    Wrapped<bool?>? copying,
    Wrapped<String?>? documentId,
    Wrapped<String?>? documentTypeId,
    Wrapped<String?>? uniqueId1,
    Wrapped<String?>? uniqueId2,
    Wrapped<int?>? uniqueId1Int,
    Wrapped<String?>? description,
    Wrapped<String?>? inputByUsersId,
    Wrapped<String?>? attachDate,
    Wrapped<String?>? attachTime,
    Wrapped<bool?>? attachToEmail,
    Wrapped<bool?>? inactive,
    Wrapped<String?>? dateStamp,
    Wrapped<String?>? extension,
    Wrapped<String?>? documentType,
    Wrapped<String?>? inputBy,
    Wrapped<bool?>? hasImage,
    Wrapped<bool?>? hasFile,
    Wrapped<int?>? appImageCount,
    Wrapped<bool?>? fileIsModified,
    Wrapped<String?>? fileDataUrl,
    Wrapped<String?>? filePath,
    Wrapped<String?>? auditNote,
    Wrapped<String?>? recordTitle,
    Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>?
        fields,
    Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
    Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
    Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation}) {
  return WebApiModulesAgentOrderOrderDocument(
      orderId: (orderId != null ? orderId.value : this.orderId),
      copying: (copying != null ? copying.value : this.copying),
      documentId: (documentId != null ? documentId.value : this.documentId),
      documentTypeId: (documentTypeId != null
          ? documentTypeId.value
          : this.documentTypeId),
      uniqueId1: (uniqueId1 != null ? uniqueId1.value : this.uniqueId1),
      uniqueId2: (uniqueId2 != null ? uniqueId2.value : this.uniqueId2),
      uniqueId1Int:
          (uniqueId1Int != null ? uniqueId1Int.value : this.uniqueId1Int),
      description:
          (description != null ? description.value : this.description),
      inputByUsersId: (inputByUsersId != null
          ? inputByUsersId.value
          : this.inputByUsersId),
      attachDate: (attachDate != null ? attachDate.value : this.attachDate),
      attachTime: (attachTime != null ? attachTime.value : this.attachTime),
      attachToEmail:
          (attachToEmail != null ? attachToEmail.value : this.attachToEmail),
      inactive: (inactive != null ? inactive.value : this.inactive),
      dateStamp: (dateStamp != null ? dateStamp.value : this.dateStamp),
      extension: (extension != null ? extension.value : this.extension),
      documentType:
          (documentType != null ? documentType.value : this.documentType),
      inputBy: (inputBy != null ? inputBy.value : this.inputBy),
      hasImage: (hasImage != null ? hasImage.value : this.hasImage),
      hasFile: (hasFile != null ? hasFile.value : this.hasFile),
      appImageCount:
          (appImageCount != null ? appImageCount.value : this.appImageCount),
      fileIsModified: (fileIsModified != null
          ? fileIsModified.value
          : this.fileIsModified),
      fileDataUrl:
          (fileDataUrl != null ? fileDataUrl.value : this.fileDataUrl),
      filePath: (filePath != null ? filePath.value : this.filePath),
      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));
}