pair static method
Pair with an Android device using the wireless debugging pairing code.
Implementation
static Future<bool> pair(
String ip,
int port,
String pairingCode,
AdbCrypto crypto, {
bool verbose = false,
}) async {
final result = await _pairAtEndpoint(
ip,
port,
pairingCode,
crypto,
verbose: verbose,
pairingEndpoint: AdbPairingEndpoint(host: ip, port: port),
);
return result.success;
}