env property

Object? get env

The additional environment of the executed program or shell. If omitted the parent process' environment is used. If provided it is merged with the parent process' environment.

Implementation

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

Implementation

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