onTotalUnreadCountChanged static method

Stream<int> onTotalUnreadCountChanged()

会话未读消息计数更新

Implementation

static Stream<int> onTotalUnreadCountChanged() {
  if (IMKitClient.isEnableCloudConversation() == true) {
    return NimCore.instance.conversationService.onTotalUnreadCountChanged;
  } else {
    return NimCore
        .instance.localConversationService.onTotalUnreadCountChanged;
  }
}