signOut method
Implementation
Future signOut() async {
AuthenticationApi authenticationApi = AuthenticationApi(authAPIClient);
return authenticationApi.revokeAccessToken().then((response) {
expireSession();
}).catchError((error) {
expireSession();
});
}