currentWindow property

bool? get currentWindow

Whether the tabs are in the current window.

Implementation

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

Implementation

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