notifyChannelParticiapntCountChanged method Null safety

void notifyChannelParticiapntCountChanged(
  1. List<OpenChannel> channels
)

Implementation

void notifyChannelParticiapntCountChanged(List<OpenChannel> channels) {
  _channelHandlers.values.forEach((element) {
    element.onChannelParticipantCountChanged(channels);
  });
}