logout method
Implementation
Future<void> logout() async {
try {
await _authService.logout();
} catch (_) {
// Silently ignore — we always clear local state
}
await _signOut();
}
Future<void> logout() async {
try {
await _authService.logout();
} catch (_) {
// Silently ignore — we always clear local state
}
await _signOut();
}