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