onBlockedContactAdded method
Implementation
void onBlockedContactAdded(String userId) {
for (var observer in List<ChatUIKitObserverBase>.of(observers)) {
if (observer is ContactObserver) {
observer.onBlockedContactAdded(userId);
}
}
}