copyWithWrapped method

WebApiModulesHomeControlsInventoryCompatibleInventoryCompatible copyWithWrapped({
  1. Wrapped<String?>? inventoryCompatibleId,
  2. Wrapped<String?>? inventoryId,
  3. Wrapped<String?>? iCode,
  4. Wrapped<String?>? description,
  5. Wrapped<String?>? compatibleWithInventoryId,
  6. Wrapped<String?>? compatibleWithICode,
  7. Wrapped<String?>? compatibleWithDescription,
  8. Wrapped<String?>? compatibleWithClassification,
  9. Wrapped<String?>? dateStamp,
  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

WebApiModulesHomeControlsInventoryCompatibleInventoryCompatible
    copyWithWrapped(
        {Wrapped<String?>? inventoryCompatibleId,
        Wrapped<String?>? inventoryId,
        Wrapped<String?>? iCode,
        Wrapped<String?>? description,
        Wrapped<String?>? compatibleWithInventoryId,
        Wrapped<String?>? compatibleWithICode,
        Wrapped<String?>? compatibleWithDescription,
        Wrapped<String?>? compatibleWithClassification,
        Wrapped<String?>? dateStamp,
        Wrapped<String?>? auditNote,
        Wrapped<String?>? recordTitle,
        Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>?
            fields,
        Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
        Wrapped<List<FwStandardDataFwDefaultAttribute>?>?
            defaultFieldAttributes,
        Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation}) {
  return WebApiModulesHomeControlsInventoryCompatibleInventoryCompatible(
      inventoryCompatibleId: (inventoryCompatibleId != null
          ? inventoryCompatibleId.value
          : this.inventoryCompatibleId),
      inventoryId:
          (inventoryId != null ? inventoryId.value : this.inventoryId),
      iCode: (iCode != null ? iCode.value : this.iCode),
      description:
          (description != null ? description.value : this.description),
      compatibleWithInventoryId: (compatibleWithInventoryId != null
          ? compatibleWithInventoryId.value
          : this.compatibleWithInventoryId),
      compatibleWithICode: (compatibleWithICode != null
          ? compatibleWithICode.value
          : this.compatibleWithICode),
      compatibleWithDescription: (compatibleWithDescription != null
          ? compatibleWithDescription.value
          : this.compatibleWithDescription),
      compatibleWithClassification: (compatibleWithClassification != null
          ? compatibleWithClassification.value
          : this.compatibleWithClassification),
      dateStamp: (dateStamp != null ? dateStamp.value : this.dateStamp),
      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));
}