active property

bool? get active

Whether the tab should become the active tab in the window. Does not affect whether the window is focused (see windows.update). Defaults to true.

Implementation

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

Implementation

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