tabId property

int? get tabId

Optional tab ID, if this task represents a tab running on a renderer process.

Implementation

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

Implementation

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