LiveListState

data class LiveListState(val liveList: StateFlow<List<LiveInfo>>, val liveListCursor: StateFlow<String>, val currentLive: StateFlow<LiveInfo>)

Live list state

Overview

Contains live list, cursor and current live info.

Constructors

Link copied to clipboard
constructor(liveList: StateFlow<List<LiveInfo>>, liveListCursor: StateFlow<String>, currentLive: StateFlow<LiveInfo>)

Properties

Link copied to clipboard
val currentLive: StateFlow<LiveInfo>

Current live info.

Link copied to clipboard
val liveList: StateFlow<List<LiveInfo>>

Live list.

Link copied to clipboard
val liveListCursor: StateFlow<String>

Live list cursor.