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