clearSession method

Future<bool> clearSession(
  1. String sessionId
)

Session management helper

Implementation

Future<bool> clearSession(String sessionId) async {
  chatSession.clearHistory();
  return true;
}