globalValue property

T? get globalValue

The global or installation-wide value.

Implementation

T? get globalValue => _i5.getProperty(
      this,
      'globalValue',
    );
set globalValue (T? value)

Implementation

set globalValue(T? value) {
  _i5.setProperty(
    this,
    'globalValue',
    value ?? _i6.undefined,
  );
}