cwd property

Object? get cwd

The working directory of the process.

If not specified, the cwd of the parent process is used.

Implementation

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

Implementation

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