ProgressIndicatorModel
open class ProgressIndicatorModel(conversationEntry: ConversationEntry, val entries: List<ConversationEntry> = when (conversationEntry.entryType) {
ConversationEntryType.QueuePosition -> listOf(conversationEntry)
else -> emptyList()
}) : ChatFeedEntry.TypingIndicatorModel
Constructors
Link copied to clipboard
constructor(conversationEntry: ConversationEntry, entries: List<ConversationEntry> = when (conversationEntry.entryType) {
ConversationEntryType.QueuePosition -> listOf(conversationEntry)
else -> emptyList()
})