onAttributesChangedOfGroupMember method

  1. @protected
void onAttributesChangedOfGroupMember(
  1. String groupId,
  2. String userId,
  3. Map<String, String>? attributes,
  4. String? operatorId,
)

Implementation

@protected
void onAttributesChangedOfGroupMember(String groupId, String userId,
    Map<String, String>? attributes, String? operatorId) {
  for (var observer in List<ChatUIKitObserverBase>.of(observers)) {
    if (observer is GroupObserver) {
      observer.onAttributesChangedOfGroupMember(
          groupId, userId, attributes, operatorId);
    }
  }
}