id property

int? get id

The ID of the window. Window IDs are unique within a browser session. In some circumstances a window may not be assigned an ID property; for example, when querying windows using the sessions API, in which case a session ID may be present.

Implementation

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

Implementation

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