args property

List<String>? get args

Arguments to pass to the process.

Implementation

_i2.List<_i2.String>? get args => (_i3.getProperty(
      this,
      'args',
    ) as _i2.List?)
        ?.cast();
set args (List<String>? value)

Implementation

set args(_i2.List<_i2.String>? value) {
  _i3.setProperty(
    this,
    'args',
    value ?? _i6.undefined,
  );
}