clearEnv property
bool?
get
clearEnv
Clear environmental variables from parent process.
Doesn't guarantee that only env
variables are present, as the OS may
set environmental variables for processes.
@default {false}
Implementation
_i2.bool? get clearEnv => _i3.getProperty(
this,
'clearEnv',
);
set
clearEnv
(bool? value)
Implementation
set clearEnv(_i2.bool? value) {
_i3.setProperty(
this,
'clearEnv',
value ?? _i6.undefined,
);
}