notifyChannelOperatorsUpdated method Null safety

void notifyChannelOperatorsUpdated(
  1. BaseChannel channel
)

Implementation

void notifyChannelOperatorsUpdated(BaseChannel channel) {
  _channelHandlers.values.forEach((element) {
    element.onChannelOperatorsUpdated(channel);
  });
}