signOut method

Future<void> signOut()

Implementation

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