active property

bool active

Whether the tab is active in its window. Does not necessarily mean the window is focused.

Implementation

bool get active => _wrapped.active;
void active=(bool v)

Implementation

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