fetchJoinedChatThreads method

Future<CursorResult<ChatThread>> fetchJoinedChatThreads({
  1. String? cursor,
  2. int limit = 20,
})

Implementation

Future<CursorResult<ChatThread>> fetchJoinedChatThreads({
  String? cursor,
  int limit = 20,
}) {
  return checkResult(ChatSDKEvent.fetchJoinedChatThreads, () {
    return Client.getInstance.chatThreadManager
        .fetchJoinedChatThreads(cursor: cursor, limit: limit);
  });
}