addMessageReaction function
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);
}