startAdb method

Future<PrivServerInfo> startAdb({
  1. PrivAdbConnectionOptions? options,
  2. int? timeoutMillis,
  3. String? adbDeviceName,
  4. String? operationId,
})

Starts the Privileged Server through ADB.

When options carries a non-null port, the static TCP/IP port is used and the Wireless Debugging connect port is not discovered.

Implementation

Future<PrivServerInfo> startAdb({
  PrivAdbConnectionOptions? options,
  int? timeoutMillis,
  String? adbDeviceName,
  String? operationId,
}) {
  throw UnimplementedError('startAdb() has not been implemented.');
}