clearChatHistory static method
Clears all saved chat messages from SharedPreferences.
Implementation
static Future<void> clearChatHistory() async {
final prefs = await SharedPreferences.getInstance();
await prefs.remove(_chatMessagesKey);
}
Clears all saved chat messages from SharedPreferences.
static Future<void> clearChatHistory() async {
final prefs = await SharedPreferences.getInstance();
await prefs.remove(_chatMessagesKey);
}