According to the docs:
https://www.dartlang.org/docs/dart-up-and-running/contents/ch04-tools-dartium.html
On Mac and Linux, you can add --checked, but this does not work for Windows.
--checked
How to run Dartium with a checkmark in Windows?
Apparently, use DART_FLAGSalso works for Windows.
DART_FLAGS
see https://www.dartlang.org/tools/dartium/#using-command-line-flags
Command flags are prefixed /on Windows, so you use:
/
C:\path\to\dartium\chrome.exe /DART_FLAGS='--checked'
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
Source: https://habr.com/ru/post/1526021/More articles:MySQL and Codeigniter query performance - sqlmySQL Query - select fields - mysqlGraphs (x, y, z) of triplets over the coordinates (x, y) with color z - matlabHow to display a hidden element in AngularJS? - javascriptPrint the actual value of P only if> 0.001 - rWPF control to format raw HTML - wpfUnable to update Android widget list in onPostExecute - javaCapture jQuery CTRL + S and Command + S (Mac) - jqueryHow to use regex c ++? - c ++Template Parameter Pattern with GCC - c ++All Articles