fetchReactionList method
Implementation
Future<Map<String, List<MessageReaction>>> fetchReactionList({
required List<String> messageIds,
required ChatType type,
String? groupId,
}) {
return checkResult(ChatSDKEvent.fetchReactionList, () {
return Client.getInstance.chatManager.fetchReactionList(
messageIds: messageIds,
chatType: type,
groupId: groupId,
);
});
}