根据文件:
https://www.dartlang.org/docs/dart-up-and-running/contents/ch04-tools-dartium.html
在Mac和Linux中,您可以附加--checked
,但这不适用于Windows。
如何在Windows中使用选中的标记启动Dartium?
答案 0 :(得分:3)
显然,使用DART_FLAGS
也适用于Windows。
请参阅https://www.dartlang.org/tools/dartium/#using-command-line-flags
命令标志在Windows上以/
为前缀,因此您使用:
C:\path\to\dartium\chrome.exe /DART_FLAGS='--checked'
答案 1 :(得分:1)
您应该使用DART_FLAGS
环境变量:
的Cmd.exe:
$> set DART_FLAGS=--checked
$> C:\path\to\dartium\chrome.exe
的PowerShell:
$> $env:DART_FLAGS="--checked"
$> C:\path\to\dartium\chrome.exe