copyWithWrapped method

Implementation

WebApiModulesUtilitiesAIAssistantUtilityChatHistorySaveRequest
copyWithWrapped({
  Wrapped<String?>? userId,
  Wrapped<String?>? title,
  Wrapped<String?>? chatData,
}) {
  return WebApiModulesUtilitiesAIAssistantUtilityChatHistorySaveRequest(
    userId: (userId != null ? userId.value : this.userId),
    title: (title != null ? title.value : this.title),
    chatData: (chatData != null ? chatData.value : this.chatData),
  );
}