getMessageReactions function

Future<Map<String, List<int>>> getMessageReactions(
  1. String messageId
)

Returns reactions associated with message with messageId Result contains the map where key is the reaction and value is the list of users' ids who reacted with this reaction messageId - the ID of the message you want to get reactions

Implementation

Future<Map<String, List<int>>> getMessageReactions(String messageId) {
  return GetMessageReactionsQuery(messageId).perform();
}