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