fetchPinnedMessages method
Implementation
Future<List<Message>> fetchPinnedMessages({
required String conversationId,
}) {
return checkResult(ChatSDKEvent.fetchPinnedMessages, () async {
return Client.getInstance.chatManager
.fetchPinnedMessages(conversationId: conversationId);
});
}