active property

bool? get active

Whether the tab should be active. Does not affect whether the window is focused (see windows.update).

Implementation

bool? get active => _wrapped.active;
set active (bool? v)

Implementation

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