read property

Object? get read

Specifies if the read permission should be requested or revoked. If set to "inherit", the current read permission will be inherited. If set to true, the global read permission will be requested. If set to false, the global read permission will be revoked. If set to Array<string | URL>, the read permission will be requested with the specified file paths.

@default {false}

Implementation

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

Implementation

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