store method

  1. @override
Future<void> store(
  1. TokenRequestOptions options,
  2. 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);
}