path property

Object? get path

An allow-read or deny-read permission can be scoped to a specific path (and if the path is a directory, any sub paths).

Implementation

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

Implementation

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