enableTcpIp method
Implementation
Future<bool> enableTcpIp(String serial, {int port = 5555}) async {
try {
final result = await _exec.run(
adbPath,
arguments: ['-s', serial, 'tcpip', port.toString()],
);
return result.success;
} catch (_) {
return false;
}
}