deleteConversation method
Delete/leave conversation.
Implementation
Future<void> deleteConversation(String conversationId) async {
_ensureInitialized();
await _database.deleteConversation(conversationId);
unawaited(
_outboundQueue
.enqueue(OutboundOperation.deleteConversation(conversationId)),
);
}