notifyChannelDeleted method Null safety
- String channelUrl,
- ChannelType channelType
Implementation
void notifyChannelDeleted(String channelUrl, ChannelType channelType) {
_channelHandlers.values.forEach((element) {
element.onChannelDeleted(channelUrl, channelType);
});
}