shellArgs property

Object? get shellArgs

Args for the custom shell executable. A string can be used on Windows only which allows specifying shell args in command-line format.

Implementation

_i2.Object? get shellArgs => _i5.getProperty(
      this,
      'shellArgs',
    );
set shellArgs (Object? value)

Implementation

set shellArgs(_i2.Object? value) {
  _i5.setProperty(
    this,
    'shellArgs',
    value ?? _i6.undefined,
  );
}