onUserAuthenticationFailed method

  1. @protected
void onUserAuthenticationFailed()

Implementation

@protected
void onUserAuthenticationFailed() {
  for (var observer in List<ChatUIKitObserverBase>.of(observers)) {
    if (observer is ConnectObserver) {
      observer.onUserAuthenticationFailed();
    }
  }
}