copyWithWrapped method

WebApiModulesAdministratorSystemUpdateHistorySystemUpdateHistory copyWithWrapped({
  1. Wrapped<int?>? systemUpdateHistoryId,
  2. Wrapped<String?>? usersId,
  3. Wrapped<String?>? userName,
  4. Wrapped<DateTime?>? updateDateTime,
  5. Wrapped<String?>? fromVersion,
  6. Wrapped<String?>? toVersion,
  7. Wrapped<String?>? errorMessage,
  8. Wrapped<String?>? dateStamp,
  9. Wrapped<String?>? auditNote,
  10. Wrapped<String?>? recordTitle,
  11. Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>? fields,
  12. Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
  13. Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
  14. Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation,
})

Implementation

WebApiModulesAdministratorSystemUpdateHistorySystemUpdateHistory
    copyWithWrapped(
        {Wrapped<int?>? systemUpdateHistoryId,
        Wrapped<String?>? usersId,
        Wrapped<String?>? userName,
        Wrapped<DateTime?>? updateDateTime,
        Wrapped<String?>? fromVersion,
        Wrapped<String?>? toVersion,
        Wrapped<String?>? errorMessage,
        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 WebApiModulesAdministratorSystemUpdateHistorySystemUpdateHistory(
      systemUpdateHistoryId: (systemUpdateHistoryId != null
          ? systemUpdateHistoryId.value
          : this.systemUpdateHistoryId),
      usersId: (usersId != null ? usersId.value : this.usersId),
      userName: (userName != null ? userName.value : this.userName),
      updateDateTime: (updateDateTime != null
          ? updateDateTime.value
          : this.updateDateTime),
      fromVersion:
          (fromVersion != null ? fromVersion.value : this.fromVersion),
      toVersion: (toVersion != null ? toVersion.value : this.toVersion),
      errorMessage:
          (errorMessage != null ? errorMessage.value : this.errorMessage),
      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));
}