LikeListState

data class LikeListState(val likeList: List<Like> = listOf())

Data class representing the state of the Like list.

Constructors

Link copied to clipboard
constructor(likeList: List<Like> = listOf())

Properties

Link copied to clipboard

The list of Like items.