sys property

Object? get sys

Specifies if the sys permission should be requested or revoked. If set to "inherit", the current sys permission will be inherited. If set to true, the global sys permission will be requested. If set to false, the global sys permission will be revoked.

@default {false}

Implementation

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

Implementation

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