logout method

Future<void> logout ()

Implementation

Future<void> logout() async {
  await _authStorage.clear();
  await _requestCode.clearCookies();
  _token = null;
  AadOAuth(_config);
}