Conversations Home Screen Model
data class ConversationsHomeScreenModel(val isLoading: Boolean = false, val conversations: List<Conversation> = emptyList(), val error: String? = null)
Data model representing the state of the home screen showing all conversations.
Constructors
Link copied to clipboard
constructor(isLoading: Boolean = false, conversations: List<Conversation> = emptyList(), error: String? = null)