logout method

Future<void> logout()

Implementation

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