host method

UhstHost host({
  1. String? hostId,
})

Returns UhstHost which able to:

Implementation

UhstHost host({String? hostId}) {
  final host = UhstHost.create(
    relayClient: _relayClient,
    socketProvider: _socketProvider,
    hostId: hostId,
    debug: _debug,
  );
  return host;
}