resetConversation method

Future<void> resetConversation(
  1. String sessionId
)

Clears the conversation history remembered for sessionId so that instance's next generateContent call starts a fresh conversation.

On platforms without conversation memory, this is a no-op.

Implementation

Future<void> resetConversation(String sessionId) {
  throw UnimplementedError('resetConversation() has not been implemented.');
}