addArgs method
Add arguments to the command
Processes the arguments and sets the relevant fields
--no-fvm
: disables fvm support
Implementation
void addArgs(List<String> args) {
_noFvm = _noFvm || args.remove('--no-fvm');
_args.addAll(args);
}