copyWithWrapped method

Implementation

WebApiModulesUtilitiesAIAssistantUtilityChatHistorySaveResponse
copyWithWrapped({Wrapped<bool?>? success, Wrapped<String?>? chatId}) {
  return WebApiModulesUtilitiesAIAssistantUtilityChatHistorySaveResponse(
    success: (success != null ? success.value : this.success),
    chatId: (chatId != null ? chatId.value : this.chatId),
  );
}