logout method
Implementation
Future<void> logout() async {
await _supabaseService.client.auth.signOut();
await _sharedPreferencesService.clearUserToken();
_currentUser = null;
}
Future<void> logout() async {
await _supabaseService.client.auth.signOut();
await _sharedPreferencesService.clearUserToken();
_currentUser = null;
}