cwd property

String? get cwd

The current working directory of the executed shell. If omitted the tools current workspace root is used.

Implementation

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

Implementation

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