getConversationListWithoutFormat method
获取会话不格式化
Implementation
Future<LinkedHashMap<dynamic, dynamic>> getConversationListWithoutFormat({
required String nextSeq,
required int count,
}) async {
if (kIsWeb) {
return TencentCloudChatSdkPlatform.instance
.getConversationListWithoutFormat(
nextSeq: nextSeq,
count: count,
);
}
return TIMConversationManager.instance.getConversationListWithoutFormat(
nextSeq: nextSeq,
count: count,
);
}