fetchReactionList method

Future<Map<String, List<MessageReaction>>> fetchReactionList({
  1. required List<String> messageIds,
  2. required ChatType type,
  3. String? groupId,
})

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,
    );
  });
}