connectAnonymousUser method

Future<OwnUser> connectAnonymousUser({
  1. bool connectWebSocket = true,
})

Connects the current user with an anonymous id, this triggers a connection to the API. It returns a Future that resolves when the connection is setup.

Implementation

Future<OwnUser> connectAnonymousUser({
  bool connectWebSocket = true,
}) async {
  final token = Token.anonymous();
  final user = OwnUser(id: token.userId);
  return _connectUser(
    user,
    token: token,
    connectWebSocket: connectWebSocket,
  );
}