windowId property

int get windowId

The ID of the window for this context, or -1 if this context is not hosted in a window.

Implementation

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

Implementation

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