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