getConversationsFromServer method
- @Deprecated('Use [fetchConversationsByOptions] instead')
从服务器获取会话列表。
Return 返回获取的会话列表。
Throws 如果有异常会在这里抛出,包含错误码和错误描述,详见 EMError。
Implementation
@Deprecated('Use [fetchConversationsByOptions] instead')
///
///
///
/// 从服务器获取会话列表。
///
/// **Return** 返回获取的会话列表。
///
/// **Throws** 如果有异常会在这里抛出,包含错误码和错误描述,详见 [EMError]。
///
Future<List<EMConversation>> getConversationsFromServer() async {
Map result = await ChatChannel.invokeMethod(
ChatMethodKeys.getConversationsFromServer);
try {
EMError.hasErrorFromResult(result);
List<EMConversation> conversationList = [];
result[ChatMethodKeys.getConversationsFromServer]?.forEach((element) {
conversationList.add(EMConversation.fromJson(element));
});
return conversationList;
} on EMError catch (e) {
throw e;
}
}