notifyDeliveryReceiptUpdated method Null safety

void notifyDeliveryReceiptUpdated(
  1. GroupChannel channel
)

Implementation

void notifyDeliveryReceiptUpdated(GroupChannel channel) {
  sdk.streamManager.delivery.add(channel);

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