id property

int? id

The ID of the tab. Tab IDs are unique within a browser session. Under some circumstances a tab may not be assigned an ID; for example, when querying foreign tabs using the sessions API, in which case a session ID may be present. Tab ID can also be set to chrome.tabs.TAB_ID_NONE for apps and devtools windows.

Implementation

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

Implementation

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