signOut method

Future signOut()

Implementation

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