tabId property

int? get tabId

The ID of the tab that raised this event. Tab IDs are unique within a browser session.

Implementation

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

Implementation

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