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