permissions property

Object? get permissions

Specifies the permissions that should be used to run the bench.

Set this to "inherit" to keep the calling thread's permissions.

Set this to "none" to revoke all permissions.

@default {"inherit"}

Implementation

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

Implementation

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