LikeState

data class LikeState(val totalLikeCount: StateFlow<Long>)

Like state, used to display and subscribe to like information in live rooms/voice chat rooms.

Constructors

Link copied to clipboard
constructor(totalLikeCount: StateFlow<Long>)

Properties

Link copied to clipboard
val totalLikeCount: StateFlow<Long>

Total accumulated like count in the current live room/voice chat room, supporting real-time updates and subscription listening.