onAttributesRemoved method

  1. @protected
void onAttributesRemoved(
  1. String roomId,
  2. List<String> removedKeys,
  3. String from
)

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