vmAdditionalArgs property
Arguments to be passed directly to the Dart VM that will run program.
Unlike toolArgs which always go after the complete tool, these args
always go directly after dart
:
- dart {vmAdditionalArgs} {toolArgs}
- dart {vmAdditionalArgs} run test:test {toolArgs}
Implementation
final List<String>? vmAdditionalArgs;