addMessageReaction function

Future<void> addMessageReaction(
  1. String messageId,
  2. String reaction
)

Adds the reaction on the message with messageId messageId - the ID of the message you reacted on reaction - the reaction you want to add

Implementation

Future<void> addMessageReaction(String messageId, String reaction) {
  return updateMessageReactions(messageId, addReaction: reaction);
}