reconnect method

Future<void> reconnect()

Reconnects the client right away if the token mismatch is detected.

Implementation

Future<void> reconnect() async {
  Log.debug('reconnect()', '$runtimeType');

  if (_client == null || _currentToken != token) {
    _client = await _newClient();
    _currentToken = token;
  }
}