signOut method
Implementation
Future<void> signOut() async {
await Future.wait([
_authProvider.signOut(),
_authProvider.securedStorage.deleteAuthSessionTokensAndCredentials(),
]);
userSession = const UserSession();
}
Future<void> signOut() async {
await Future.wait([
_authProvider.signOut(),
_authProvider.securedStorage.deleteAuthSessionTokensAndCredentials(),
]);
userSession = const UserSession();
}