clearChatHistory static method

Future<void> clearChatHistory()

Clears all saved chat messages from SharedPreferences.

Implementation

static Future<void> clearChatHistory() async {
  final prefs = await SharedPreferences.getInstance();
  await prefs.remove(_chatMessagesKey);
}