onMessageReactionRemoved method
onMessageReactionRemoved is called when a reaction is removed from a message
Implementation
@override
void onMessageReactionRemoved(ReactionEvent reactionEvent) {
if (reactionEvent.reaction != null) {
removeReactionFromMap(reactionEvent.reaction!);
update();
}
}