copyWithWrapped method

WebApiModulesInventoryAssetCertificationAssetCertification copyWithWrapped({
  1. Wrapped<int?>? assetCertificationId,
  2. Wrapped<String?>? inventoryCertificationId,
  3. Wrapped<String?>? inventoryCertification,
  4. Wrapped<String?>? rentalItemId,
  5. Wrapped<String?>? certificationDate,
  6. Wrapped<String?>? expirationDate,
  7. Wrapped<String?>? usersId,
  8. Wrapped<String?>? userName,
  9. Wrapped<String?>? json,
  10. Wrapped<String?>? html,
  11. Wrapped<String?>? barCode,
  12. Wrapped<String?>? serialNumber,
  13. Wrapped<String?>? rfId,
  14. Wrapped<String?>? inventoryId,
  15. Wrapped<String?>? iCode,
  16. Wrapped<String?>? description,
  17. Wrapped<String?>? auditNote,
  18. Wrapped<String?>? recordTitle,
  19. Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>? fields,
  20. Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
  21. Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
  22. Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation,
})

Implementation

WebApiModulesInventoryAssetCertificationAssetCertification copyWithWrapped(
    {Wrapped<int?>? assetCertificationId,
    Wrapped<String?>? inventoryCertificationId,
    Wrapped<String?>? inventoryCertification,
    Wrapped<String?>? rentalItemId,
    Wrapped<String?>? certificationDate,
    Wrapped<String?>? expirationDate,
    Wrapped<String?>? usersId,
    Wrapped<String?>? userName,
    Wrapped<String?>? json,
    Wrapped<String?>? html,
    Wrapped<String?>? barCode,
    Wrapped<String?>? serialNumber,
    Wrapped<String?>? rfId,
    Wrapped<String?>? inventoryId,
    Wrapped<String?>? iCode,
    Wrapped<String?>? description,
    Wrapped<String?>? auditNote,
    Wrapped<String?>? recordTitle,
    Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>?
        fields,
    Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
    Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
    Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation}) {
  return WebApiModulesInventoryAssetCertificationAssetCertification(
      assetCertificationId: (assetCertificationId != null
          ? assetCertificationId.value
          : this.assetCertificationId),
      inventoryCertificationId: (inventoryCertificationId != null
          ? inventoryCertificationId.value
          : this.inventoryCertificationId),
      inventoryCertification: (inventoryCertification != null
          ? inventoryCertification.value
          : this.inventoryCertification),
      rentalItemId:
          (rentalItemId != null ? rentalItemId.value : this.rentalItemId),
      certificationDate: (certificationDate != null
          ? certificationDate.value
          : this.certificationDate),
      expirationDate: (expirationDate != null
          ? expirationDate.value
          : this.expirationDate),
      usersId: (usersId != null ? usersId.value : this.usersId),
      userName: (userName != null ? userName.value : this.userName),
      json: (json != null ? json.value : this.json),
      html: (html != null ? html.value : this.html),
      barCode: (barCode != null ? barCode.value : this.barCode),
      serialNumber:
          (serialNumber != null ? serialNumber.value : this.serialNumber),
      rfId: (rfId != null ? rfId.value : this.rfId),
      inventoryId:
          (inventoryId != null ? inventoryId.value : this.inventoryId),
      iCode: (iCode != null ? iCode.value : this.iCode),
      description:
          (description != null ? description.value : this.description),
      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));
}