getConversationById method

Future<Conversation?> getConversationById(
  1. String conversationId
)

Get a conversation by ID (one-shot).

Implementation

Future<Conversation?> getConversationById(String conversationId) {
  _ensureInitialized();
  return getConversation(conversationId);
}