clear method

Future<void> clear()

Clears the in-memory cache and the underlying TokenStore.

Implementation

Future<void> clear() async {
  _cached = null;
  _loadFuture = Future.value(null);
  await _store.clear();
}