forceCleanupConversation method

Future<void> forceCleanupConversation(
  1. String key
)

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);
  }
}