active property
bool
get
active
Whether the tab is active in its window. Does not necessarily mean the window is focused.
Implementation
bool get active => _wrapped.active;
set
active
(bool v)
Implementation
set active(bool v) {
_wrapped.active = v;
}