notifyChannelReadReceiptUpdated method Null safety

void notifyChannelReadReceiptUpdated(
  1. GroupChannel channel
)

Implementation

void notifyChannelReadReceiptUpdated(GroupChannel channel) {
  sdk.streamManager.read.add(channel);

  _channelHandlers.values.forEach((element) {
    element.onReadReceiptUpdated(channel);
  });
}