permissions property
Object?
get
permissions
Specifies the permissions that should be used to run the test.
Set this to "inherit" to keep the calling runtime permissions, set this to "none" to revoke all permissions, or set a more specific set of permissions using a {@linkcode PermissionOptionsObject}.
@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,
);
}