getConversationListWithoutFormat method

Future<LinkedHashMap> getConversationListWithoutFormat({
  1. required String nextSeq,
  2. required int count,
})

获取会话不格式化

Implementation

Future<LinkedHashMap<dynamic, dynamic>> getConversationListWithoutFormat({
  required String nextSeq,
  required int count,
}) async {
  return TencentCloudChatSdkPlatform.instance
      .getConversationListWithoutFormat(
    nextSeq: nextSeq,
    count: count,
  );
}