onSpecificationChanged method
Implementation
@protected
void onSpecificationChanged(ChatRoom room) {
for (var observer in List<ChatUIKitObserverBase>.of(observers)) {
if (observer is RoomObserver) {
observer.onSpecificationChanged(room);
}
}
}