store method
- TokenRequestOptions options,
- TokenSourceResponse response
override
Store credentials in the store.
This replaces any existing cached credentials with the new ones.
Implementation
@override
Future<void> store(TokenRequestOptions options, TokenSourceResponse response) async {
_cached = TokenStoreItem(options: options, response: response);
}