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