tabId property

int? get tabId

Find a view according to a tab id. If this field is omitted, returns all views.

Implementation

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

Implementation

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