env property

Object? get env

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

@default {false}

Implementation

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

Implementation

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