tabIds property

List<int> tabIds

All highlighted tabs in the window.

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);
}