removeMessageReaction function
Removes the reaction on the message with messageId what was added before
messageId - the ID of the message you want to delete reaction of
reaction - the reaction you want to remove
Implementation
Future<void> removeMessageReaction(String messageId, String reaction) {
return updateMessageReactions(messageId, removeReaction: reaction);
}