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