isActive property

bool get isActive

Option is active and can be set/retrieved. If false, the value field will not be set.

Implementation

bool get isActive => _wrapped.isActive;
set isActive (bool v)

Implementation

set isActive(bool v) {
  _wrapped.isActive = v;
}