getConversationListByConversaionIds
功能介绍
通过会话ID获取指定会话列表
参数详解
| 参数名称 | 参数类型 | 是否必填 | 描述 | 
| conversationIDList | List< String > | 是 | 需要获取会话列表数据的会话id列表 | 
返回值
V2TimValueCallback<List<V2TimConversation>>
{
    code : int
    desc : String
    data : List<V2TimConversation>
}
返回值详解
代码示例
    
    V2TimValueCallback<List<V2TimConversation>>
        getConversationListByConversaionIdsRes = await TencentImSDKPlugin
            .v2TIMManager
            .getConversationManager()
            .getConversationListByConversaionIds(conversationIDList: []);
    if (getConversationListByConversaionIdsRes.code == 0) {
      
      getConversationListByConversaionIdsRes.data?.forEach((element) {
        element.conversationID; 
        element.draftText; 
        element.draftTimestamp; 
        element.faceUrl; 
        element.groupAtInfoList; 
        element.groupID; 
        element.groupType; 
        element.isPinned; 
        element.lastMessage; 
        element.orderkey; 
        element.recvOpt; 
        element.showName; 
        element.type; 
        element.unreadCount; 
        element.userID; 
      });
    }