onBlockedContactDeleted method

void onBlockedContactDeleted(
  1. String userId
)

Implementation

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