notifyReactionUpdated method Null safety
- BaseChannel channel,
- ReactionEvent event
Implementation
void notifyReactionUpdated(BaseChannel channel, ReactionEvent event) {
_channelHandlers.values.forEach((element) {
element.onReactionUpdated(channel, event);
});
}