get Total Unread Count
Get all community channel Unread messages Total count.
Parameters
sub Channel Id
sub-channel ID
CommunityChannel.getTotalUnreadCount { count, error ->
if (error == null && count != null) {
println("all community channel Unread messages: $count")
}
}Content copied to clipboard
}