cachedResponse method
Get the cached credentials if one exists.
Implementation
Future<TokenSourceResponse?> cachedResponse() async {
final cached = await _store.retrieve();
return cached?.response;
}
Get the cached credentials if one exists.
Future<TokenSourceResponse?> cachedResponse() async {
final cached = await _store.retrieve();
return cached?.response;
}