targetTabId property

int? get targetTabId

Optional tab id of the tab which will be captured. If not specified then the current active tab will be selected. Only tabs for which the extension has been granted the activeTab permission can be used as the target tab.

Implementation

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

Implementation

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