fetchConversations method
Implementation
Future<CursorResult<Conversation>> fetchConversations({
String? cursor,
int pageSize = 20,
}) {
return checkResult(ChatSDKEvent.fetchConversations, () {
// ignore: deprecated_member_use
return Client.getInstance.chatManager.fetchConversation(
cursor: cursor,
pageSize: pageSize,
);
});
}