args property

List<String> get args

The arguments passed to the process. Defaults to an empty array.

Implementation

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

Implementation

set args(_i2.List<_i2.String> value) {
  _i5.setProperty(
    this,
    'args',
    value,
  );
}