ChatUI
class ChatUI(chat: Chat, val actions: MutableStateFlow<Set<ChatUI.Action>> = MutableStateFlow(Action.default), chatActivityClazz: Class<*>, chatCustomNotificationActivityClazz: Class<*>? = null, val scope: CoroutineScope = CoroutineScope(Dispatchers.IO), chatUIButtonsProvider: ChatUIButtonsProvider = DefaultChatUIButtonsProvider(actions, scope)) : Chat, ChatUIButtonsProvider
The chat UI
Constructors
Link copied to clipboard
constructor(chat: Chat, actions: MutableStateFlow<Set<ChatUI.Action>> = MutableStateFlow(Action.default), chatActivityClazz: Class<*>, chatCustomNotificationActivityClazz: Class<*>? = null, scope: CoroutineScope = CoroutineScope(Dispatchers.IO), chatUIButtonsProvider: ChatUIButtonsProvider = DefaultChatUIButtonsProvider(actions, scope))
Types
Properties
Link copied to clipboard
The MutableStateFlow containing the set of actions
Link copied to clipboard
Current Chat UI buttons
Link copied to clipboard
Buttons Provider represents an optional callback that is invoked when chat buttons hierarchy is about to being displayed on chat UI. This callback allows to return an updated set of Chat Buttons if some chat button must be added or removed in the integration use case.
Link copied to clipboard
Link copied to clipboard