shellCommand function

Future<Uint8List> shellCommand({
  1. required AdbTcpConnection conn,
  2. required List<String> command,
  3. 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);