getTotalUnreadCount

public final Unit getTotalUnreadCount(OperationHandler<Integer> handler)

Get all community channel Unread messages Total count.

Parameters

subChannelId

sub-channel ID

CommunityChannel.getTotalUnreadCount { count, error ->
if (error == null && count != null) {
println("all community channel Unread messages: $count")
}
}

}