onAttributesRemoved method
Implementation
@protected
void onAttributesRemoved(
String roomId, List<String> removedKeys, String from) {
for (var observer in List<ChatUIKitObserverBase>.of(observers)) {
if (observer is RoomObserver) {
observer.onAttributesRemoved(roomId, removedKeys, from);
}
}
}