unroot method
Unroots the connection with the device.
Implementation
Future<void> unroot({bool debug = false}) async {
if (!await isRooted(debug: debug)) {
return;
}
return await _bridge.executor.unroot(_connection.arguments, debug: debug);
}