active property

bool active

Implementation

bool get active => _active;
void active=(bool b)

Implementation

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