onAttributesUpdated method

  1. @protected
void onAttributesUpdated(
  1. String roomId,
  2. Map<String, String> attributes,
  3. String from
)

Implementation

@protected
void onAttributesUpdated(
    String roomId, Map<String, String> attributes, String from) {
  for (var observer in List<ChatUIKitObserverBase>.of(observers)) {
    if (observer is RoomObserver) {
      observer.onAttributesUpdated(roomId, attributes, from);
    }
  }
}