getConversationById method
Get a conversation by ID (one-shot).
Implementation
Future<Conversation?> getConversationById(String conversationId) {
_ensureInitialized();
return getConversation(conversationId);
}
Get a conversation by ID (one-shot).
Future<Conversation?> getConversationById(String conversationId) {
_ensureInitialized();
return getConversation(conversationId);
}