startSmart method

Future<ProxyInfo> startSmart({
  1. required SmartDialerConfig config,
  2. String localAddress = '127.0.0.1:0',
})

Starts a local proxy backed by the Smart Dialer, which automatically selects a working DNS/TLS strategy by probing SmartDialerConfig.testDomains.

Implementation

Future<ProxyInfo> startSmart({
  required SmartDialerConfig config,
  String localAddress = '127.0.0.1:0',
}) {
  throw UnimplementedError('startSmart() has not been implemented.');
}