active property

bool? 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;
void active=(bool? v)

Implementation

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