tabId property

int? get tabId

Limits the change to when a particular tab is selected. Automatically resets when the tab is closed.

Implementation

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

Implementation

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