tabId property
int?
get
tabId
The tab in which to open the side panel. If the corresponding tab has
a tab-specific side panel, the panel will only be open for that tab.
If there is not a tab-specific panel, the global panel will be open in
the specified tab and any other tabs without a currently-open tab-
specific panel. This will override any currently-active side panel
(global or tab-specific) in the corresponding tab. At least one of this
or windowId
must be provided.
Implementation
int? get tabId => _wrapped.tabId;
set
tabId
(int? v)
Implementation
set tabId(int? v) {
_wrapped.tabId = v;
}