logout method

  1. @override
Future<bool> logout()
override

Deletes old tokens and invalidates the token session at the IdP.

Implementation

@override
Future<bool> logout() async {
  // TODO(poq): implement logout
  //throw UnimplementedError();
  _invalidateLoginState();
  return true;
}