logout method

Future<void> logout()

Implementation

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