shellCommand function
Future<Uint8List>
shellCommand({
- required AdbTcpConnection conn,
- required List<
String> command, - dynamic hint,
执行shell命令
Implementation
Future<Uint8List> shellCommand(
{required AdbTcpConnection conn,
required List<String> command,
dynamic hint}) =>
RustLib.instance.api.shellCommand(conn: conn, command: command, hint: hint);