value property

bool get value

Implementation

bool get value => _value;
set value (bool v)

Implementation

set value(bool v) {
  _value = v;
  _invalidateCache();
}