active property
bool
get
active
Implementation
bool get active => _active;
set
active
(bool value)
Implementation
set active(bool value) {
_active = value;
_host.style.display = _active ? '' : 'none';
}