logout method Null safety
Performs a logout
Implementation
Future<void> logout() async {
await _adapterFactory.logout();
await _storage.remove();
workflowController.setAuthState(false);
authToken(AuthToken.empty());
}
Performs a logout
Future<void> logout() async {
await _adapterFactory.logout();
await _storage.remove();
workflowController.setAuthState(false);
authToken(AuthToken.empty());
}