cwd property

String? get cwd

The current working directory that should be used when running the sub-process.

Implementation

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

Implementation

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