tabIds property

List<int>? tabIds

List of tabs.Tab.id which the rule should match. An ID of tabs.TAB_ID_NONE matches requests which don't originate from a tab. An empty list is not allowed. Only supported for session-scoped rules.

Implementation

List<int>? get tabIds =>
    _wrapped.tabIds?.toDart.cast<int>().map((e) => e).toList();
void tabIds=(List<int>? v)

Implementation

set tabIds(List<int>? v) {
  _wrapped.tabIds = v?.toJSArray((e) => e);
}