variable property
String?
get
variable
Optional environment variable name (e.g. PATH
).
Implementation
_i2.String? get variable => _i3.getProperty(
this,
'variable',
);
set
variable
(String? value)
Implementation
set variable(_i2.String? value) {
_i3.setProperty(
this,
'variable',
value ?? _i6.undefined,
);
}