windowsRawArguments property

bool? get windowsRawArguments

Skips quoting and escaping of the arguments on windows. This option is ignored on non-windows platforms.

@default {false}

Implementation

_i2.bool? get windowsRawArguments => _i3.getProperty(
      this,
      'windowsRawArguments',
    );
set windowsRawArguments (bool? value)

Implementation

set windowsRawArguments(_i2.bool? value) {
  _i3.setProperty(
    this,
    'windowsRawArguments',
    value ?? _i6.undefined,
  );
}