clear method
Clears the in-memory cache and the underlying TokenStore.
Implementation
Future<void> clear() async {
_cached = null;
_loadFuture = Future.value(null);
await _store.clear();
}
Clears the in-memory cache and the underlying TokenStore.
Future<void> clear() async {
_cached = null;
_loadFuture = Future.value(null);
await _store.clear();
}