signInAnonymously method
Implementation
Future<void> signInAnonymously() async {
_log.logTyped(AuthRepositoryLog('signInAnonymously()'));
try {
await _authService.signInAnonymously();
} catch (err) {
if (err is AuthServiceException) {
_log.logTyped(
AuthRepositoryLog(
'signInAnonymously() - failed',
err.message,
StackTrace.current,
),
);
rethrow;
}
}
}