windowId property

int? get windowId

The id of the window to open the action popup in. Defaults to the currently-active window if unspecified.

Implementation

int? get windowId => _wrapped.windowId;
set windowId (int? v)

Implementation

set windowId(int? v) {
  _wrapped.windowId = v;
}