onConversationEvent method

  1. @protected
void onConversationEvent(
  1. MultiDevicesEvent event,
  2. String conversationId,
  3. ConversationType type
)

Implementation

@protected
void onConversationEvent(
    MultiDevicesEvent event, String conversationId, ConversationType type) {
  for (var observer in List<ChatUIKitObserverBase>.of(observers)) {
    if (observer is MultiObserver) {
      observer.onConversationEvent(event, conversationId, type);
    }
  }
}