tabId property

int? get tabId

If specified, the side panel options will only apply to the tab with this id. If omitted, these options set the default behavior (used for any tab that doesn't have specific settings). Note: if the same path is set for this tabId and the default tabId, then the panel for this tabId will be a different instance than the panel for the default tabId.

Implementation

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

Implementation

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