getConversation method

Future<Conversation?> getConversation()

Implementation

Future<Conversation?> getConversation() async {
  try {
    return TwilioConversations.conversationClient
        ?.getConversation(conversationSid);
  } on PlatformException catch (err) {
    throw TwilioConversations.convertException(err);
  }
}