tabId property

int? get tabId

If specified, the side panel options for the given tab will be returned. Otherwise, returns the default side panel options (used for any tab that doesn't have specific settings).

Implementation

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

Implementation

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