applyToken method

  1. @override
void applyToken()
override

Applies the specified token right away instead of the lazy reconnection.

token is lazily applied to the remote, so in order to force the reconnection right away this method may be used.

Implementation

@override
void applyToken() {
  Log.debug('applyToken()', '$runtimeType');
  _graphQlProvider.reconnect();
}