notifyReactionUpdated method Null safety

void notifyReactionUpdated(
  1. BaseChannel channel,
  2. ReactionEvent event
)

Implementation

void notifyReactionUpdated(BaseChannel channel, ReactionEvent event) {
  _channelHandlers.values.forEach((element) {
    element.onReactionUpdated(channel, event);
  });
}