onConversationEvent method
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);
    }
  }
}