value property

dynamic get value

The value contained inside the global variable — this can be used to directly set and get the global's value.

Implementation

_i2.dynamic get value => _i6.getProperty(
      this,
      'value',
    );
set value (dynamic value)

Implementation

set value(_i2.dynamic value) {
  _i6.setProperty(
    this,
    'value',
    value,
  );
}