run property
Object?
get
run
Specifies if the run
permission should be requested or revoked.
If set to "inherit"
, the current run
permission will be inherited.
If set to true
, the global run
permission will be requested.
If set to false
, the global run
permission will be revoked.
@default {false}
Implementation
_i2.Object? get run => _i3.getProperty(
this,
'run',
);
set
run
(Object? value)
Implementation
set run(_i2.Object? value) {
_i3.setProperty(
this,
'run',
value ?? _i6.undefined,
);
}