adbPair method

Future<PrivAdbPairingResult> adbPair({
  1. required String pairingCode,
  2. String? adbDeviceName,
  3. int? port,
  4. int? portDiscoveryTimeoutMillis,
})

Pairs this app's ADB key with a six digit Wireless Debugging code.

Pairing and starting are independent: a successful adbPair never starts the server by itself.

Implementation

Future<PrivAdbPairingResult> adbPair({
  required String pairingCode,
  String? adbDeviceName,
  int? port,
  int? portDiscoveryTimeoutMillis,
}) {
  throw UnimplementedError('adbPair() has not been implemented.');
}