sendReady method
Implementation
Future<void> sendReady() async {
if (remoteId == null) {
throw Exception('Remote ID is not set');
}
await _adbConnection.sendMessage(AdbProtocol.generateReady(localId, remoteId!));
}
Future<void> sendReady() async {
if (remoteId == null) {
throw Exception('Remote ID is not set');
}
await _adbConnection.sendMessage(AdbProtocol.generateReady(localId, remoteId!));
}