start method

Future<void> start({
  1. required String token,
  2. String originUrl = '',
  3. int haConnections = 4,
  4. bool enablePostQuantum = false,
})

Start the tunnel with the given token and origin URL

Implementation

Future<void> start({
  required String token,
  String originUrl = '',
  int haConnections = 4,
  bool enablePostQuantum = false,
}) {
  throw UnimplementedError('start() has not been implemented.');
}