active property
bool
get
active
Implementation
bool get active => _active;
set
active
(bool b)
Implementation
set active(bool b) {
// don't update unless the value is new
if (b == _active) return;
_active = b;
notify();
}