onSpecificationChanged method

  1. @protected
void onSpecificationChanged(
  1. ChatRoom room
)

Implementation

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