forceCleanupConversation method
Forces cleanup of a specific conversation.
Implementation
Future<void> forceCleanupConversation(String key) async {
final state = await storage.get(key);
if (state != null) {
await _cleanupConversation(key, state.conversationName);
}
}