handleAuthFailure static method
Implementation
static Future<void> handleAuthFailure() async {
if (_authFailureHandled) return;
_log("handleAuthFailure: signing the user out. ${diagnostics()}");
_authFailureHandled = true;
await clear();
ULoading.dismiss();
await UHttpClient.onAuthFailed?.call();
}